Hi, im working on a template for website baker, and ive commed up with a problem, im not being able to put a roller over with the simple hover and such. If anyone could help me it would really be appriciated :)
A:link {color: #000000;}
A:visited {color: #000000;}
A:hover {text-decoration: underline; color: #f3f3f3;}
A:active {color: #000000;text-decoration: none}
The following is the CSS as it is now
#menu{
width:273px;
float:left;
height:auto;
margin-left:22px;
margin-top:37px;
}
#menu ul li {
display: block;
list-style-image: url("dot.gif");
}
#menu ul li a {
color: #000000;
text-decoration: none;
}
Just add the css for the hover like this:
#menu ul li a:hover {
color: #f3f3f3;
text-decoration: underline;
}
Ruud
Sweet :)
Thanks alot!