It's better to do this with
css. Img borders will not override the
css-determined border. Put this into your
css:
- Code: Select all
a img {
border: 0;
}
Or, if you do not want this to apply to
all anchored images, only a few, use the following:
- Code: Select all
img.unstyled {
border: 0;
}
And put this into your img tag:
- HTML: Select all
<img src="mypicture.gif" class="unstyled" />
That should do it...
Cheers,
Stuart