C
crispy
Can anyone tell me why on this page:
http://www.saneplanet.com/clients/nomadic/draft/past_prods.htm
the ACTIVE property for the links on the navbar don't show? The
visited, link, and hover work fine. But Active doesn't. I need it to
work so that it serves as a clue to the user on which page he is on.
Here's the CSS:
..navbar a:link {
background-color : #000;
display : block;
border : 1px solid #000;
padding : 2px 2px 2px 2px;
text-decoration : none;
width : 100%
}
..navbar a:visited {
background-color : #000;
border : 1px solid #000;
display : block;
padding : 2px 2px 2px 2px;
color : #fff;
text-decoration : none
}
..navbar a:hover {
background-color : #AD0000;
border : 1px solid #ffffff;
display : block;
padding : 2px 2px 2px 2px;
color : #fff;
text-decoration : none
}
..navbar a:active {
background-color : #AD0000;
display : block;
border : 1px solid #fff;
padding : 2px 2px 2px 2px;
color : #fff;
text-decoration : none;
width : 100%
}
http://www.saneplanet.com/clients/nomadic/draft/past_prods.htm
the ACTIVE property for the links on the navbar don't show? The
visited, link, and hover work fine. But Active doesn't. I need it to
work so that it serves as a clue to the user on which page he is on.
Here's the CSS:
..navbar a:link {
background-color : #000;
display : block;
border : 1px solid #000;
padding : 2px 2px 2px 2px;
text-decoration : none;
width : 100%
}
..navbar a:visited {
background-color : #000;
border : 1px solid #000;
display : block;
padding : 2px 2px 2px 2px;
color : #fff;
text-decoration : none
}
..navbar a:hover {
background-color : #AD0000;
border : 1px solid #ffffff;
display : block;
padding : 2px 2px 2px 2px;
color : #fff;
text-decoration : none
}
..navbar a:active {
background-color : #AD0000;
display : block;
border : 1px solid #fff;
padding : 2px 2px 2px 2px;
color : #fff;
text-decoration : none;
width : 100%
}