Highlighted image

JavaScript and client side scripting.

Moderator: General Moderators

Post Reply
localhost
Forum Commoner
Posts: 43
Joined: Tue Dec 07, 2004 4:52 am
Location: islamabad
Contact:

Highlighted image

Post by localhost »

i am using <a> tag over the <img> tag but it outlines the image blue how can i remove that outline.....and i dont want to use <inpt type=image>(novice)
zenabi
Forum Commoner
Posts: 84
Joined: Mon Sep 08, 2003 5:26 am
Location: UK

Post by zenabi »

Using CSS:

Code: Select all

a:link img, a:visited img, a:hover img, a:active img &#123; 
	border: none;
&#125;
localhost
Forum Commoner
Posts: 43
Joined: Tue Dec 07, 2004 4:52 am
Location: islamabad
Contact:

SOLVED

Post by localhost »

thanks it worked
Post Reply