Haha! I think I figured it out. Trial and error of course. This centered the text the way I wanted and it shrunk the vertical size of the entire bar... the highlighted parts. I changed some other stuff for a more custom look. It works so far, lord knows if I'm going to run into problems down the road. 
The ddlevelsmenu-topbar.css
It was this:
Code:
.solidblockmenu ul{
margin: 0;
padding: 0;
float: left;
font: bold 13px Arial;
width: 100%;
overflow: hidden;
margin-bottom: 1em;
border: 1px solid #625e00;
border-width: 1px 0;
background: black url(blockdefault.gif) center center repeat-x;
}
.solidblockmenu li{
display: inline;
}
.solidblockmenu li a{
float: left;
color: white;
padding: 9px 11px;
text-decoration: none;
border-right: 1px solid white;
}
I changed it to this:
Code:
.solidblockmenu ul{
margin: 0;
padding: 6px;
float: left;
font: bold 12px Arial;
width: 100%;
overflow: hidden;
margin-bottom: 1em;
border: 1px solid #625e00;
border-width: 1px 0;
background: black url(blockdefault.gif) center center repeat-x;
}
.solidblockmenu li{
display: inline;
}
.solidblockmenu li a{
float: none;
color: white;
padding: 9px 9px;
text-decoration: none;
border-right: 0px solid white;
}
ALTHOUGH.... now when a menu drops down there's a small gap between it and the main menu, because I shrunk the height of the main menu bar. This of course makes the dropdown items useless because the mouse (arrow on the screen) can't scroll down the menu. Does that make sense? I'll be looking for the cure to that but if you (or anyone) can help me find the code for that, it would be appreciated.
Bookmarks