Trying to edit some css on my site so that the current page on my navigation/menu stays highlighted indicating the current page. Right now I have for my css menu links:
a:link {
text-decoration:none;
color:#000000;
}
a:active {
text-decoration:none;
color:#FFF;
background-color:21B9FF;
}
a:visited {
text-decoration:none;
color:#000000;
}
a:hover {
text-decoration:none;
color:#FFF;
background-color:#21B9FF;
}
Would that complete my css section or am I missing something?? What about what I would need for my html?
Any help would be appreciated.
Thanks
a:link {
text-decoration:none;
color:#000000;
}
a:active {
text-decoration:none;
color:#FFF;
background-color:21B9FF;
}
a:visited {
text-decoration:none;
color:#000000;
}
a:hover {
text-decoration:none;
color:#FFF;
background-color:#21B9FF;
}
Would that complete my css section or am I missing something?? What about what I would need for my html?
Any help would be appreciated.
Thanks