Click to See Complete Forum and Search --> : no text decoration


jrbp
12-05-2003, 07:00 PM
I can't get the border off of image links on my site. Please look at http://www.premiumpublications.com/wise The links are on the left side. I tried style="text-decoration: none; " but it didn't work.

Jeff Mott
12-05-2003, 07:01 PM
borders don't fall under the category of text decoration ;) border: none

jrbp
12-05-2003, 07:09 PM
thanks

jrbp
12-05-2003, 07:14 PM
i tried but it doesn't work. I updated it on my site

Paul Jr
12-05-2003, 07:25 PM
It's because you have border: none; in your link tag. It should go in your <img> tag.

Like so:

<a href="index.html">
<img src="linkhome.JPG" width="165" style="border: none;"></a><br>

I believe that "border: 0;" will also work.

jrbp
12-05-2003, 07:50 PM
ok thanks

Paul Jr
12-05-2003, 08:03 PM
No problemo. :)

TomDenver
12-06-2003, 03:48 AM
I find it handy to do that in an external CSS file for your entire site, like this:

img {border:none;}

I don't want borders on my image links usually anyway, and if I do, I can create a class for images with a certain border.