I've got a pure CSS drop down menu where the child buttons cover up part of the parent button. Any ideas how to fix this?
You can see the page here:
http://www.powerzoneequipment.com/index99.asp
Here's the relevant CSS code:
#hpmenucontainer {
clear: both;
width: 610px;
margin: 20px auto;
height: 96px;
}
#hpmenu {
position: absolute;
width: 610px;
}
#hpmenu ul .item{
display:none;
}
#hpmenu ul:hover .item {
display:block;
background:#CFCFCF;
width: 150px;
height: 32px;
padding-top: 12px;
border: 1px solid #fcfcf4;
margin: 0;
}
#hpmenu ul:hover .item a {
color:#1A1A1A;
text-decoration:none;
}
#hpmenu ul:hover .item a:hover {
color:#1A1A1A;
}
#hpmenu ul{
text-align: center;
background:#CFCFCF;
width: 150px;
height: 32px;
padding-top: 12px;
float: left;
list-style:none;
font-weight: bold;
letter-spacing: 1px;
padding-left: 0px;
margin: 1px;
}
#hpmenu ul a {
text-decoration:none;
color:#1A1A1A;
}