Moving menu to left side

Latest Reply from Dave at 2013-12-16 08:44:27
On my site at kendrick-auto.com I have a menu across the top under my logo.. I'd like to know if it can be moved to the left side. NOT the left sidebar in the content, but farther to the left.

Also, the drop down menu under "Speed Equipment", I do not want that to drop down..dont need that.
To fix this you have to replace the code:
#secondarymenu-container {
height: 136px;
position: relative;
z-index: 11;
}

with:
#secondarymenu-container {
height: 136px;
position: relative;
z-index: 23;
}

in the file style.css.
To align the top menu to the right you have to replace the code:
#secondarymenu li {
float: rigth;
padding: 10px;
}

with:
#secondarymenu li {
float: left;
padding: 10px;
}

in the file style.css.
That didnt do anything.

also, the below doesnt exist in style.css:

#secondarymenu li {
float: rigth;
padding: 10px;
}



How do I remove the drop down menu under "Speed Equipment" ?
Hi!

Sorry for inconvenience. You need the code:

#secondarymenu {
float: right;
margin-top: 47px;
}

Please, replace it with:
#secondarymenu {
float: left;
margin-top: 70px;
}

This code is located in style.css.
To get rid of the drop down menu you have to customize your menu on the page Appearance --> Menus in the dashboard.

Leave a reply

Add codeAdd image