Blue frame around the link inage

admin

Administrator
Staff member
When I use images as links they get a blue frame, like text links get a blue underline. I would like to remove this blue frame but I don't know how to do it.<br />
<br />
I've tried using CSS and text decoration:none but it seems to apply only to text links.<br />
<br />
I would prefer to use style sheets but any help is of course welcome.<br />
<br />
The homepage is lugnet.valross.net (<!-- m --><a class="postlink" href="http://lugnet.valross.net">http://lugnet.valross.net</a><!-- m -->) and it's the blue buttons on the left (Intressen, Om lugnet, Datormodding, L閶榢ar).<br />
<br />
Many thanks in advance.<!--content-->Do you mean something like this:<br />
<html><br />
<head><br />
<title>Image CSS Test</title><br />
<style><br />
IMG {border:0}<br />
</style><br />
</head><br />
<body><br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"page1.html"><img src="0.gif"></a><br />
</body><br />
</html><!--content-->EXCELLENT!!<br />
<br />
Many thanks<!--content-->You can also set individual image border, as such:<br />
<br />
<img src=http://www.webdeveloper.com/forum/archive/index.php/"0.gif" border="0"></a><!--content-->Cool. Thank you.<!--content-->Originally posted by requestcode <br />
Do you mean something like this:<br />
<html><br />
<head><br />
<title>Image CSS Test</title><br />
<style><br />
IMG {border:0}<br />
</style><br />
</head><br />
<body><br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"page1.html"><img src="0.gif"></a><br />
</body><br />
</html> That's invalid on quite a number of accounts.<br />
<br />
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"<br />
"http://www.w3.org/TR/html4/strict.dtd"><br />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><br />
<title>Example</title><br />
<br />
<style type="text/css"><br />
<!-- <br />
img {border:0}<br />
--><br />
</style><br />
<br />
<div><a href=http://www.webdeveloper.com/forum/archive/index.php/"http://www.w3.org/"><img alt="W3C" src="http://www.w3.org/Icons/w3c_home"></a></div><!--content-->
 
Back
Top