Link Colours

liunx

Guest
Hi,<br />
<br />
I have set my page properties so that all links are blue.<br />
<br />
How can I prevent a blue border being placed around the images that are links?<br />
<br />
thanks<br />
Angus<!--content-->Add this to your <head>:<br />
<br />
<style type="text/css"><br />
img {<br />
border: 0;<br />
}<br />
</style><!--content--><style type="text/css"><br />
a img {<br />
border: 0;<br />
}<br />
</style><br />
<br />
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.<!--content-->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...<!--content-->
 
Back
Top