Mobile Menu Help
-
When in mobile view is there a way to make the different levels right justification? Everything is currently centered and the Top level topic I want to be left justified. Is there a way to do this?
-
Hi there,
Where can I see this on your site now? To help me see exactly what you see, can you copy the URL (from your browser address bar) of the page you are on?
I’d like to visit it directly to check if I can see the same thing, thanks.
-
So you want only top-level items left-aligned, with sub-items still centered? You can use the following CSS for that:
/* Make top-level menu items left-aligned in mobile menu */ ul.mobile-menu.toggled-on li.page_item { text-align: left; padding-left: 10px; padding-right: 10px; } ul.mobile-menu.toggled-on ul.children li.page_item { text-align: center; padding: initial; }Go to My Site ->Design ->Customize ->Additional CSS, and paste that in on a new line.
-
Would there be a way to make the top-level items left-aligned with one lower-level item centered and the sub-items right-aligned?
-
- The topic ‘Mobile Menu Help’ is closed to new replies.