jvoegeli Posted December 26, 2009 Share Posted December 26, 2009 Ok on the top container I made my logo a clickable link back to the homepage... well IE likes to put a bright blue border around the image when its a clickable link... i tried to create my own css class with another border the same color but it just puts that border on the outside of the blue... is there anyway to get rid of the bright blue border around a clickable link? http://www.vsupports.com/billing/ you can see what I'm talking abt ^ 0 Quote Link to comment Share on other sites More sharing options...
bear Posted December 26, 2009 Share Posted December 26, 2009 <img src="http://vsupports.com/images/vsslogowhmcs.gif" alt="Voegeli Support Solutions" /></a> Change to: <img src="http://vsupports.com/images/vsslogowhmcs.gif" alt="Voegeli Support Solutions" border ="0" /></a> Or you could add to your CSS (better rnethod, but does this for all images): #img{ border: none; } 0 Quote Link to comment Share on other sites More sharing options...
jvoegeli Posted December 26, 2009 Author Share Posted December 26, 2009 awesome! thanks for the quick reply... just a side note tho the css code did not work... added it saved and uploaded also cleared temp files but still the blue border remained... the first method worked tho just going to have to remember to change with all linked images. Thanks again! 0 Quote Link to comment Share on other sites More sharing options...
bear Posted December 26, 2009 Share Posted December 26, 2009 Try leaving off the # sign then. That might only work with IDs. (such as <p id="blah") 0 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.