First post here, don't crucify me! I have several buttons/images that are links. These are the only links where I don't want the link to be visible, ie, blue box. How can I remove blue or any color assigned to the link by using CSS. Thanks!
But CSS is cleaner. Just do a: img { border:none; } Or, if you do have images with borders somewhere, give the images a class and do a border:none; on that class.
Or, a img {border: none;} Code (markup): affects only those images that are within a link. cheers, gary
I have 5 buttons (images) When I hover over each, a dropdown menu appears. The html solution worked fine, but I wanted to know how to cleanly do it with CSS. Thanks for the help!