Using Firebug I have these css properties:
#nav-menu2, #nav-menu2 .menu-header, div.menu {
margin-left: 10px;
max-width: 1050px;
width: 91.61%;
but I can't find them in any css file
how can I do?
Than you
Using Firebug I have these css properties:
#nav-menu2, #nav-menu2 .menu-header, div.menu {
margin-left: 10px;
max-width: 1050px;
width: 91.61%;
but I can't find them in any css file
how can I do?
Than you
You should change it in the custom CSS option so that it does not get over written in an update. Try something like this in the custom CSS option:
#nav-menu2, #nav-menu2 .menu-header, div.menu { width: 85%; }
This topic has been closed to new replies.