this is because the menu flows over into a second line; your theme does not seem to be designed for two lines of pages in the menu.
possibly ‘un’-comment the overflow line:
#navigation .menu {
list-style-type: none;
/**contact us drooping link fix - added padding-top go rid of overflow:hidden**/
padding-top:2px!important;
/*overflow:hidden;*/
}
and change the margin line in here:
#navigation .menu li {
float: left;
margin-top:10px;
text-transform: uppercase;
}
to (example only, adapt to the length of your page title):
margin: 10px 15px;
if you need to add more pages, and if you need the second line of links, this will be more complicated 😉
Thanks! I will give this a try.. hopefully it works!
Removing the comment for the overflow line worked! Thanks!