• Welcome to Overclockers Forums! Join us to reply in threads, receive reduced ads, and to customize your site experience!

Hyperlink outline

Overclockers is supported by our readers. When you click a link to make a purchase, we may earn a commission. Learn More.

Avg

Senior Member
Joined
Oct 30, 2003
Hyperlink outline (html)

I've been taking webpage design class in high school since september and I learned quite a bit, but I wan't to get rid of that blue outline when I use a picture as a hyperlink.
 
Last edited:
I believe you need a "border=0" on whatever image you're hyperlinking to get rid of the blue.

JigPu
 
If you wanted to do a pagewide setting, put the line

Code:
IMG {border: none; }

inside of a style tag. That way you don't have to put border=0 on each image.
 
Back