How would i make it so the link is not underlined.I'm using:
Code:A:link { color: #993399; } A:visited { color: #993399; } A:active { color: #993399; } A:hover { color: #993399; }
How would i make it so the link is not underlined.I'm using:
Code:A:link { color: #993399; } A:visited { color: #993399; } A:active { color: #993399; } A:hover { color: #993399; }
James
Connected to reality through a proxy server.
HTML Code:a:link { color: #993399; text-decoration: none; } a:visited { color: #993399; text-decoration: none; } a:active { color: #993399; text-decoration: none; } a:hover { color: #993399; text-decoration: none; }
Thanks, REP+
James
Connected to reality through a proxy server.
If you have the same for all three, just use
HTML Code:a { color: #993399; text-decoration: none; }
Want to hide these adverts? Register an account for free!