- This topic has 3 replies, 2 voices, and was last updated 10 years, 6 months ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
- You must be logged in to reply to this topic.
Home › Community Forums › Optimal Theme Support › Secondary Nav alignment
Tagged: Optimal Nav Secondary
I would like to have the secondary nav align to the right instead of the left. I’ve tried a few CSS tweaks, but none work.
Thanks,
Mike
The easiest way is to add “float: right;” to this – “.menu li” which should be located on or around line 365. Keep in mind, this will reverse the order since it starts with the first “li” and moves it to the very right. So you’ll need to rearrange the order on your menus page.
.menu li {
float: right;
list-style-type: none;
}
That worked. Thanks!
Thanks also for your great work.
-Mike
Awesome!
You’re Welcome!