Click to See Complete Forum and Search --> : removing an link underline (image)


fatbottoms
07-14-2005, 09:10 PM
why am i getting a blue border around my image? i've tried text-decoration:none, but it doesn't seem to work. what am i doing wrong?
here is my code and the page http://fatbottoms.atspace.com/brindex.html
(the link is at the bottom of the page)


div.pokey a { margin-left:242px; border: 2px ridge #00FFFF;
width: 468px; text-deocoration: none; }


<body>

<div class="pokey">
<a href="index.html"><img src= "pokeysignature.gif"></a>
</div>

bathurst_guy
07-14-2005, 09:40 PM
Put this up the top of your CSS

img {border-style: none;}

and tell me if that makes a difference

fatbottoms
07-14-2005, 09:45 PM
that did the trick. thanks for replying.