Howdy,
I'm having some real problems with a menu I'm using to list my static Pages. I'm using the Sndbox theme and styling it with CSS.
You can see the site I'm working on here:
http://e3ncw.com/page/1
What I'm working on is trying to force that top menu to be exactly 31 pixels tall so that the background image for each ul li shows fully.
I think I'm missing something easy here? The CSS I'm using is below, thanks for your help!
#topmenu {
width: 900px;
font-size: 14px;
text-transform: uppercase;
color: #a82125;
text-align: right;
height: 31px;
line-height: 31px;
}
#topmenu ul {
margin: 0px;
height: 31px;
line-height: 31px;
}
#topmenu ul li {
display: inline;
background: url(images/menu-bckgnd.jpg) repeat-x 0 bottom;
margin-left: 5px;
height: 31px;
line-height: 31px;
}
#topmenu ul li a {
text-decoration: none;
color: #a82125;
}
#topmenu ul li a:hover {
color: #563839;
}