Hi ne0bi0,
There is slight bug in the menus with longer titles. Thanks for informing us and I will be fixing this in version 1.2.6 which we are currently working on.
But till then, to give you quick fix.
Open style.css in simple-catch director in your theme directory
1) Go to Line no 622 you will see as following:
#header #mainmenu ul li a {
padding: 0 15px;
height: 48px;
display: block;
color:#fff;
font-size:15px;
line-height:48px;
color:#444;
float:left;
}
Replace with
#header #mainmenu ul li a {
padding: 0 15px;
display: block;
color: #fff;
font-size: 15px;
line-height: 48px;
color: #444;
float: left;
}
2) Go to line no 667 you will see as following:
#header #mainmenu ul li ul li a {
padding:0 10px;
color:#999;
height:35px;
float:none;
line-height:36px;
font-size:13px;
font-weight:normal;
}
Replace with
#header #mainmenu ul li ul li a {
padding: 7px 10px;
color: #999;
float:none;
line-height: 18px;
font-size: 13px;
font-weight: normal;
}
Regards,
Sakin