Donna Jones said the following:

really going nuts here trying to figure out how to get this one pixel border to be gone. its the image/button on the left. she wants it to be a link

http://www.westendwebs.net/susan/

My sympathies with going nuts :) - I had this same problem before. Here's the solution:

You could change

a img,:link img,:visited img { border:1px solid black;  }
to
a img { border: none; }

which would remove the border from all images within links.


Alternatively, you could assign that particular image/button an id or class:

<a class="imagebutton" href="decorating.htm"><img src="images/decorating-button.jpg" width="86" height="51" alt=""></a>

and use this css:

a#imagebutton img { border: none;}

-Neal
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com ______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to