Results 1 to 7 of 7
Related
-
code for putting picture at the top of the page Forum: Myspace Forum
Replies: 0 -
How to get my page content text to show up before navigation text for improved SEO Forum: HTML Forum
Replies: 0 -
Scroll Bar for text within page. Forum: HTML Forum
Replies: 1 -
I want to put more than one line of text next to a picture....HOW!?!?!?! Forum: HTML Forum
Replies: 3
-
03-19-2003, 03:13 PM #1
picture and text hyperlinks on same page
I have pictures as hyperlinks and also text on the same page as hyperlinks. If I use
<body bgcolor="#fefefe" text="#000000" link="#FFFFFF" vlink="#FFFFFF" alink="#FFFFFF">
then my pictures don't have a square around them YEH!!! but my text links are white so they don't show up. What I am going for is black text links and no white around my picture links. Is this possible??
-
03-19-2003, 03:57 PM #2
All your links are set to #ffffff so they are going to be white. Change them all to #000000 and they'll all be black.
I don't think that that is what might have been what was causing the square around the pictures. Could you post some code or a link?
-
03-19-2003, 04:05 PM #3
If I change them all to black then I have that wonderful black box around all of my pictures. I don't want boxes around any of the pictures. This is the start of my code after the </head> tag.
<body bgcolor="#fefefe" text="#000000" link="#FFFFFF" vlink="#FFFFFF" alink="#FFFFFF">
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td width="100%"><img src="../../pfs/chstheresa.gif" width="177" height="61"
alt="chstheresa.gif (2332 bytes)"><font size="+2" color="000099" face="Currency"><em><strong>Health
Information Management</strong></em></font></td>
</tr>
</table>
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td width="100%" height="8" bgcolor="333399"></td>
</tr>
<tr>
<td width="100%" height="4" bgcolor="32cd32"></td>
</tr>
<tr>
<td width="100%" height="4" bgcolor="c2c2c2"></td>
</tr>
</table>
<div align="center"><center>
<table border="0" cellpadding="0" cellspacing="0" width="100%" height="365">
<tr>
<td width="55%" colspan="2" height="21"></td>
<td width="34%" height="21"></td>
</tr>
<tr>
<td width="33%" align="center" height="172"><a
href="http://chsweb.carilion.com/pfs/pfs/csah.html"><img onmouseover="high(this)"
style="FILTER: alpha(opacity=30); moz-opacity: 0.3" onmouseout="low(this)" height="97" alt
src="http://chsweb.carilion.com/pfs/pfs/csah_little.gif" width="152" align="center"></a><p><em><strong><small>St
Albans</small></strong></em></td>
<td width="33%" valign="baseline" align="center" height="172"> <p><a
href="http://chsweb.carilion.com/pfs/pfs/cfmh.html"><img onmouseover="high(this)"
style="FILTER: alpha(opacity=30); moz-opacity: 0.3" onmouseout="low(this)" height="97" alt
src="http://chsweb.carilion.com/pfs/pfs/cfmh_little.gif" width="152"></a></p>
<p align="center"><em><strong><font face="Currency"><small>Franklin Memorial</small></font></strong></em></p>
<p align="center"> </td>
<td width="34%" valign="baseline" align="center" height="172"> <p><a
href="http://chsweb.carilion.com/pfs/pfs/cnrv.html"><img onmouseover="high(this)"
style="FILTER: alpha(opacity=30); moz-opacity: 0.3" onmouseout="low(this)" height="97" alt
src="http://chsweb.carilion.com/pfs/pfs/cnrv_little.gif" width="152"></a></p>
<p align="center"><em><strong><small>New River Valley</small></strong></em></p>
<p align="center"> </td>
</tr>
<tr>
<td width="33%" align="center" height="172"><a
href="http://chsweb.carilion.com/pfs/pfs/crmh.html"><img onmouseover="high(this)"
style="FILTER: alpha(opacity=30); moz-opacity: 0.3" onmouseout="low(this)" height="97" alt
src="http://chsweb.carilion.com/pfs/pfs/crmh_little.gif" width="152"></a><p><em><strong><small>Roanoke
Memorial</small></strong></em></td>
<td width="33%" align="center" height="172"><a
href="http://chsweb.carilion.com/pfs/pfs/cgmh.html"><img onmouseover="high(this)"
style="FILTER: alpha(opacity=30); moz-opacity: 0.3" onmouseout="low(this)" height="97" alt
src="http://chsweb.carilion.com/pfs/pfs/cgmh_little.gif" width="152"></a><p align="center"><em><strong><small>Giles
Memorial</small></strong></em></td>
<td width="34%" align="center" height="172"><a
href="http://chsweb.carilion.com/pfs/pfs/crch.html"><img onmouseover="high(this)"
style="FILTER: alpha(opacity=30); moz-opacity: 0.3" onmouseout="low(this)" height="97" alt
src="http://chsweb.carilion.com/pfs/pfs/crch_little.gif" width="152"></a><p align="center"><em><strong><small>Roanoke
Community</small></strong></em></td>
</tr>
</table>
</center></div>
<p align="center"><a href="him_index.html">Home</a></p>
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td width="100%" height="4" bgcolor="c2c2c2"></td>
</tr>
<tr>
<td width="100%" height="4" bgcolor="32cd32"></td>
</tr>
<tr>
<td width="100%" height="8" bgcolor="333399"></td>
</tr>
</table>
</body>
</html>
-
03-19-2003, 04:29 PM #4
put
Code:<img src="blah.jpg" border="0">
If one of our members helps you, please click theicon to add to their reputation!
No support via email or private message - use the forums!
Before you ask, have you Searched?
-
03-19-2003, 04:40 PM #5
Try putting this right before the <body> tag:
<style>
img { border-width:0px; }
</style>
and change the colours of all the links to #000000 and see if that's what you want.
-
03-19-2003, 05:16 PM #6
Bye George you did it
Thanks soooo much Android!!!
-
03-20-2003, 10:01 AM #7