Hi guys -
I'm working with dreamweaver to do a website and stuff .. and I'm trying to make it so when a user is on a page, the link is hilighted a different color, then when he gets off that page, it goes to the a:visited color.
as far as i know, the command for it in the css sheet is a:active ... this doesn't work though .. here's my css .. any reasons why and any help would be totally appreciated. thanks much!
-------
I'm working with dreamweaver to do a website and stuff .. and I'm trying to make it so when a user is on a page, the link is hilighted a different color, then when he gets off that page, it goes to the a:visited color.
as far as i know, the command for it in the css sheet is a:active ... this doesn't work though .. here's my css .. any reasons why and any help would be totally appreciated. thanks much!
PHP:
.menu a{
display: block;
font-variant: normal;
font-weight: normal;
font-size: 11px;
position: relative;
border-color: #6633FF;
text-align: center;
}
td#menu a:hover {
background-color: #8DAAF3;
border-color: #6633FF;
color: #00229D !important;
}
td#menu a:visited {
color: #00229D !important;
border-color:#6633FF;
}
td#menu a:active {
color: #00229D !important;
background-color: #8DAAF3;
}
-------