Link colour

Associate
Joined
29 Sep 2004
Posts
2,082
Having a bit of a brain fart...

Ive split an image up into lots of different squares and turned them all into links. How do i stop them having a big blue box or any link related html stuff with them?

Thanks (answer preferably using css!).
 
a{
text-decoration:none;
border:0;
}

one of these should help i think, if you want to only apply this style to a particular a, make sure you access the A through its outer DIV

i.e. the links are in a div container with ID of hello

div#hello a{
text-decoration:none;
border:0;
}
 
Back
Top Bottom