Forums
Forums / Theme: Make / Primary menu -width
(@dcpl1)
11 years, 1 month ago
In Make, the primary menu wraps onto a second line when a fourth menu is added.
Can the width of the primary menu be changed so that more menu items appear on the first line?
(@funstacy)
Looks like .site-navigation and .site-branding both have a max-width of 50%. If you don’t need as much room for the site-branding (the stuff on the left) then you can easily change these values in your (child theme) stylesheet.
Maybe to something like this:
@media screen and (min-width: 800px) { .site-branding { max-width: 30%; } .site-navigation { max-width: 70%; } }
Great – many thanks.
The topic ‘Primary menu -width’ is closed to new replies.