Any Help Please??

RaiderZ

Beta member
Messages
1
Well all i need is a code to change to crappy blue colour of a link on my site to a different colour of my choice if any of you guys know how to that would be good thanks!!


RaiderZ
 
in the css....at the top of your html file in between the <head></head> tags put this...

<style type="text/css">
a {
color: #000000;
text-decoration: underline;
}
</style>

Ok, that will make all links black, and underlined.
 
Back
Top Bottom