[Resolved] hamburger menu beside site title instead of below

Home Forums Support [Resolved] hamburger menu beside site title instead of below

Home Forums Support hamburger menu beside site title instead of below

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #681428
    Gord

    How to align the hamburger menu so it appears beside the site title instead of below it at mobile sizes? example: similar to Studiopress genesis sample site.

    #681630
    David
    Staff
    Customer Support

    Hi there,

    do you have a link to the site so we can provide a fix?

    #681674
    Gord
    #681688
    David
    Staff
    Customer Support

    Try this CSS:

    @media (max-width: 768px) {
        .inside-header {
            padding-left: 30px;
            padding-right: 30px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
        }
        .inside-header .main-navigation {
            margin-left: auto;
        }
    }
    #681750
    Gord

    I added the CSS but the hamburger still appears below the site title.

    #681908
    David
    Staff
    Customer Support

    Sorry i made a typo in the code above can you retry that

    #1553913
    Reed

    Hi I tried this on my site (https://reedsutton.ca/) and it is not working.
    Is there an easy fix?

    #1554969
    David
    Staff
    Customer Support

    Hi there,

    try:

    @media (max-width: 768px) {
        .inside-header {
            padding-left: 20px;
            padding-right: 20px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
        }
        .inside-header .main-navigation {
            margin-left: auto;
        }
        .site-branding {
            flex: 0 0 75%;
        }
    }
    #1555383
    Reed

    Thanks!

    #1556114
    David
    Staff
    Customer Support

    You’re welcome

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.