PDA

View Full Version : Want to link my header image to forums home, but don't want border around it.


dpatel304
05-17-2007, 10:53 PM
For some reason, when I try to turn my header into a link, it puts a small black border around it, which I don't want. I think this may be something unique to my style. Is there anyway to have my header link, without that border. This is the code I used:

<a href="http://www.afkay.com/forums"><img src="http://www.afkay.com/forums/2e_forest/images/2EVOLVE_forest_01.gif" width="576" height="94"></a>

http://img187.imageshack.us/img187/3909/tempsk7.png

The top portion is what it looks like linked, and the bottom portion is what I want it to look like, but with a link.

Triky
05-18-2007, 04:23 PM
<a href="http://www.afkay.com/forums"><img src="http://www.afkay.com/forums/2e_forest/images/2EVOLVE_forest_01.gif" width="576" height="94" border="0"></a>


:)

dpatel304
05-20-2007, 06:45 AM
thanks. As you can tell, I don't know much about coding. Much appreciated.

Triky
05-21-2007, 07:04 AM
No problem. :)

Antivirus
05-22-2007, 11:26 AM
For W3C validation, it should actually be:


<a href="http://www.afkay.com/forums"><img src="http://www.afkay.com/forums/2e_forest/images/2EVOLVE_forest_01.gif" width="576" height="94" border="0" alt="" /></a>

Dismounted
05-22-2007, 12:08 PM
And to use CSS, it would be:
<a href="http://www.afkay.com/forums"><img src="http://www.afkay.com/forums/2e_forest/images/2EVOLVE_forest_01.gif" style="width: 576px; height: 94px; border: 0;" alt="" /></a>