KevinM1 Posted December 11, 2006 Share Posted December 11, 2006 I'm using images as hyperlinks. Unfortunately, they have a border around them signifying that they're hyperlinks. I've tried a {border: none;}, but it doesn't remove the border. Any ideas? Quote Link to comment Share on other sites More sharing options...
wildteen88 Posted December 11, 2006 Share Posted December 11, 2006 What are you applying border: none too? Quote Link to comment Share on other sites More sharing options...
DeathStar Posted December 11, 2006 Share Posted December 11, 2006 dunno what you mean. ???Images dont have boreds..just use [code]<a href='the link'><img scr="tha image"></a>[/code]that always wroked for me.. Quote Link to comment Share on other sites More sharing options...
ToonMariner Posted December 11, 2006 Share Posted December 11, 2006 you can use the old border="0" attribute in the image tag BUT i prefer to do this..<a href='the link' id="thislink"><span>SOME TEXT TO SHOW IF CSS IS OFF AND SCREEN READERS CAN SEE</span></a>in in the cssa#thislink {display:block; width: 200px; height: 100px; background transparent url (images/urimage.gif) no-repeat 0 0}a#thislink span {display:none;} Quote Link to comment Share on other sites More sharing options...
KevinM1 Posted December 11, 2006 Author Share Posted December 11, 2006 My border: none is quite literally connected to the anchor element. In other words:[code]a{ border: none;}[/code]But that didn't work.EDIT: but setting the images' border to 0 did. Thanks, ToonMariner. :) Quote Link to comment Share on other sites More sharing options...
wildteen88 Posted December 12, 2006 Share Posted December 12, 2006 [quote author=Nightslyr link=topic=118208.msg483007#msg483007 date=1165879821]My border: none is quite literally connected to the anchor element. In other words:[code]a{ border: none;}[/code]But that didn't work.EDIT: but setting the images' border to 0 did. Thanks, ToonMariner. :)[/quote]With that you are telling your browser to give links no border, what you'll want to do is this:[code]a img { border: none;}[/code]This will now tell the browser to give any image within an anchor no borders. Its the image thats got the border not the link. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.