I'm trying to make a menu using a list and I want it be about 42px high. I need the whole of the block to be clickable and have managed to achieve this in Firefox but in IE only the text is clickable. I really need to sort this out since it seriously affects functionality.
Code:
.mainmenu li{
float:left;
display: inline-block;
margin: 0;
padding: 0;
z-index:1000;
height: 42px;
position: relative;
}
.mainmenu li a{
display: block;
font-size: 13px;
font-weight: 700;
height: 33px;
padding: 9px 25px 0;
text-decoration: none;
position: relative;
}
Comment