Mobile menu/navigation text-align
-
Using the Organization Theme, I am trying to get the mobile menu to align left. The code below looks like it should work but I am not having any luck. Any ideas?
@media screen and (max-width: 800px) { .menu a { text-align: left !important; } }The blog I need help with is: (visible only to logged in users)
-
The mobile touch menu has its own selectors so it can be styled separately from the normal main menu. Give the following a try.
.mobile-menu li { text-align: left; padding-left: 20px; } -
-
- The topic ‘Mobile menu/navigation text-align’ is closed to new replies.