2
I had a problem like that with one of my themes too. It was missing "display: block;"
In your .css file scroll down and find the td#mainmenu a line.
Add to it: display: block;
Example below:
td#mainmenu a {display: block; background-color: #F7F7F7; margin: 0; padding: 4px;}
Hope this helps you out.
Quest