When I create my navigation menu, and add my menu items. If the first menu item is more than one level deep then the 2nd option will always align to the very left but anything after will align correctly.
Eg.
- aligns correctly - aligns INCORRECTLY TO THE LEFT - aligns correctly
I see, I'll take a look tomorrow morning on my test server and post a fix. Note: It's off because of the homepage icon on the left (We manually are positioning the second menu item).
I went ahead and sorted it out tonight :-). Just some minor overlooked css. You can add this to your Options Panel > Tools > Custom CSS for the easiest solution. Or you can add it to your style.css file under the 10. Navigation section.
.sf-menu li:nth-child(2) ul { left:6px;} .sf-menu li:nth-child(2) a {padding-left:25px;} .sf-menu li:nth-child(2) li a {padding-left:15px !important; } nav .sf-menu ul li:nth-child(2) a {padding-left:10px;}
An update to the files will be uploaded tomorrow that includes the css in the style.css file.