PDA

View Full Version : Css Help



Amarjit
10-12-2003, 03:50 PM
I have mapped an image, via HTML and the link works fine. However, the default blue active border appears around the image. How would I fix this? I have added a class to the image with a blank configuration for "A:LINK" but it didn't work, I found out ages ago, but it's slipped my mind. :lol:

Any help would be appreciated.

MetroStars
10-12-2003, 03:53 PM
r u using Dreamweaver

Amarjit
10-12-2003, 04:22 PM
Yes

vivitron 15
10-12-2003, 04:46 PM
off the top of my head the best way is to just use

a:link {color: #008080}
a:visited {color: #008080}
a:hover {color: #00C0B0}
a:active {color: #00C0B0}

and change the colour for all the elements in the page...this will chjange the font colours and the image borders.

MetroStars
10-12-2003, 05:20 PM
I hope this is wot your talking about :lol:

if your getting the blue border image, just click on your pic,

go 2 your properties inspector and set the border to zero like in the pic below

if this is not wot your talking about just ignore it :lol: :lol:


http://www.uploadit.org/files/121003-dreamhelp.gif

Amarjit
10-12-2003, 06:48 PM
Thanks man, that did it!

BTW, nice theme. ;)

Cl1mh4224rd
10-12-2003, 11:35 PM
Or do it the manly way. ;)


A:link IMG {
   border-width: 0px;
   }