I am having a challenge with a hover state and css. In this pic of hovering over menu item Gallery the background bleeds down. This is the code for regular state:
#navigace ul.menu li a {
display:block;
font-size:11px;
font-weight:bold;
line-height:37px;
padding:0 20px;
text-transform:uppercase;
}
To get rid of the bleed state, all I could find that would work was
#navigace ul.menu li a:hover {
display:inline;
}
However, if the user hovers over the active menu item - as in this pic of hovering over menu item Store the background effect changes to only encompass a smaller area of the anchor, not the whole menu item.
Input for how to rectify this so the hovered on menu item does not bleed down would be most appreciated.