Hi, I am developing a website. On the master page is a menu with several items on.
Home MembershipRegistration MemberLogin ContactUs About
the menu uses css.
div.membersmenu
{
padding: 4px 0px 4px 8px;
}
div.membersmenu ul
{
list-style: none;
margin: 0px;
padding: 0px;
width: auto;
}
div.membersmenu ul li a, div.menu ul li a:visited
{
background-color: #eda149;
border: 1px #eda149 solid;
color: white;
display: block;
line-height: 1.35em;
padding: 4px 8px;
text-decoration: none;
white-space: nowrap;
}
div.membersmenu ul li a:hover
{
background-color: red;
color: white;
text-decoration: none;
width:auto;
}
div.membersmenu ul li a:active
{
background-color: #999999;
color: #999999;
text-decoration: none;
}
The problem I'm having is this:
If I move my mouse over the ...
Go to the complete details ...