no text decoration

liunx

Guest
I can't get the border off of image links on my site. Please look at <!-- m --><a class="postlink" href="http://www.premiumpublications.com/wise">http://www.premiumpublications.com/wise</a><!-- m --> The links are on the left side. I tried style="text-decoration: none; " but it didn't work.borders don't fall under the category of text decoration ;) border: nonethanksi tried but it doesn't work. I updated it on my siteIt's because you have border: none; in your link tag. It should go in your <img> tag.

Like so:

<a href=http://www.webdeveloper.com/forum/archive/index.php/"index.html">
<img src=http://www.webdeveloper.com/forum/archive/index.php/"linkhome.JPG" width="165" style="border: none;"></a><br>

I believe that "border: 0;" will also work.ok thanksNo problemo. :)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.
 
Back
Top