0
how do I remove the default color blue from a link
4 ответов
+ 1
In <body> tag put "link" attribute
for example.. <body link="red">
this will change your link colour..
+ 1
The best way to do it is by using this code in your style sheet
a:link{
color:"what ever color u want ";
}
/* for the default color for the links */
a:visited {
color :" for the color u want when the link has been visited;
}
0
you can try this
a { color: #0060B6; text-decoration: none; } a:hover { color:#00A0C6; text-decoration:none; cursor:pointer; }
- 1
how are you