Hello, l am making a small image gallery with popup views in an html page, l cant run asp or php. l am making tables with images inside and images linked to popup shows.... But l cant remove those blue colors over active linked images.... l used a:link or a:active css codes in my site stylesheet but it didnt work. I dont know why. what should l do?
Border="0" is always the way to go - you can set that up through CSS if you don't want the border on any images. img { border: 0 none; }
Or rather: img a { border: 0; } (Because the blue border is added only when the image is linked) Cheers,
no...it is going to be like this <style> a:hover{text-decoration:none;} </style> the a represents the anchor tag and hover represents the behavior of link when a mouse is put over them hope it helps
a {font-family:Georgia,serif;} a:link {color:[I]same as font colour[/I];} a:visited {color: [I]same as font colour[/I];} a:hover {text-decoration: none; color: [I]same as font colour[/I];} a:active {color: [I]same as font colour[/I];text-decoration: none} Code (markup): Change font to one of your choice, then just add the class to the image in your HTML source code.