Click to See Complete Forum and Search --> : Link Colours
amacfarl
10-02-2003, 12:13 PM
Hi,
I have set my page properties so that all links are blue.
How can I prevent a blue border being placed around the images that are links?
thanks
Angus
Add this to your <head>:
<style type="text/css">
img {
border: 0;
}
</style>
spufi
10-02-2003, 01:23 PM
<style type="text/css">
a img {
border: 0;
}
</style>
Technically, they wanted it for images that are used as links so this code would work better because it allows images that aren't used for links to still have a border.
True, but in nearly all cases, turning the border off for all images is fine as they default to no borders, so users would have to explicitly set them if needed...