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.