View Single Post
  #5 (permalink)  
Old Jun 5th, 2006, 14:46
jpmitchell jpmitchell is offline
Reputable Member
Join Date: Jul 2005
Location: Indiana, USA
Age: 29
Posts: 153
Blog Entries: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Re: problem with links

You could do it much easier than that. Simply blanket the entire site with it by doing this (in your stylesheet):

Code: Select all
a img {
border:none;
}
What that does is say for any image that is a link apply no border. It isn't necessary to tell it to be 0px and transparent. No border means just that

Tip: Whenever possible try to avoid inline styling as it can make for messy markup and usually isn't necessary.
Reply With Quote