Help! Lack off css knowledge

ul#navmenu li {

top: 50px;

}


Add that in and it moves the menu down 50px which is inline with the bottom of the box? Might need few more pixels down :[]
 
It's a bit of a hacky solution, but:
Code:
ul#navmenu li a {
position: relative;
top: 47px;}
should do what you want. Change top to taste :).
 
Back
Top Bottom