hi,
I've got a rollover menu with css file, it's working fine expect that i have to click twice on the active link for the different color to stay?
any ideas where i go wrong?
thanks
v
I've got a rollover menu with css file, it's working fine expect that i have to click twice on the active link for the different color to stay?
Code:
table.menu a {
width:125px;
border:1px solid #333333;
display: block;
text-decoration: none;
}
div.menu a:link {
color: #9933ff;
background: #ccccff;
}
div.menu a:visited {
color: #9933ff;
background: #ccccff;
}
div.menu a:hover {
color: #000000;
background: #cc99ff;
border:1px solid #000000;
}
div.menu a:active {
color: #9933ff;
background: #cc99ff;
}
div.menu (
position:absolute;
top:0;
left:0;
)
any ideas where i go wrong?
thanks
v