General Community > Off-Topic

Roll over menu

(1/1)

Quarian:
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 :)


--- Code: ---A:link {color: #000000;}
A:visited {color: #000000;}
A:hover {text-decoration: underline; color: #f3f3f3;}
A:active {color: #000000;text-decoration: none}
--- End code ---


The following is the CSS as it is now


--- Code: ---#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;
}
--- End code ---

Ruud:
Just add the css for the hover like this:


--- Code: ---#menu ul li a:hover {
 color: #f3f3f3;
 text-decoration: underline;
}

--- End code ---

Ruud

Quarian:
Sweet :)

Thanks alot!

Navigation

[0] Message Index

Go to full version