• Resolved dcpl1

    (@dcpl1)


    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?

Viewing 2 replies - 1 through 2 (of 2 total)
  • 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%;
        }
    }
    Thread Starter dcpl1

    (@dcpl1)

    Great – many thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Primary menu -width’ is closed to new replies.