Hi,
You can change the menu background and border. To change menu style, please edit /templates/ot_parelstore/css/dropdownMenu.css
To break the menu to a new line (bottom of logo), please edit /templates/ot_parelstore/css/layout.css and find this code:
.ot-mainmenu {
float: left;
position: relative;
width: 50%;
z-index: 99999;
}
and change it to:
.ot-mainmenu {
clear: both;
float: left;
position: relative;
width: 50%;
z-index: 99999;
}
Suggest: you can use firebug addon in Firefox to find the element and style of things you want to modify also know what css file to edit.
Thanks