Need to fix the menu so that at full screen it does not wrap
-
How can I adjust my menu so that at full screen it does not wrap?
The blog I need help with is: (visible only to logged in users)
-
There you go:
@media screen and (min-width: 1281px) .main-navigation { max-width: 100%; } -
-
Apologies, had a mistake in my opening/closing braces. Try it again:
@media screen and (min-width: 1281px) { .main-navigation { max-width: 100%; } }If it’s still not working, give a try to this:
.main-navigation { max-width: 100% !important; } -
- The topic ‘Need to fix the menu so that at full screen it does not wrap’ is closed to new replies.