Responsive menu

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #16266
    PernillaA
    Member

    The menu on iPad is not showing correct. It´s divided in 2 lines. How do I fix this issue?
    http://getel.nyhemsida.eu/

    #16275
    Veena
    Moderator

    The menu will not be able to arrange in a row , because the menus font size is too large.
    The thing we can do is that we can switch the mobile menu earlier at 1024px.

    @media only screen and (max-width: 1024px){
    #primary-menu {
        display: none !important;
    }
    #header.sticky #primary-menu{
        display: none !important;
    }
    #mobile-menu-toggle {
    display: block;
    }}
    
    #16277
    PernillaA
    Member

    Thank you!!

    #16279
    PernillaA
    Member

    I made the change but the “mobile menu button” does not work! ?

    #16291
    Raghavendra
    Moderator

    Can you pls enhance the CSS (remove old one and paste the below) –

    @media only screen and (max-width: 1024px){
        #primary-menu {
            display: none !important;
        }
        #header.sticky #primary-menu{
            display: none !important;
        }
        #mobile-menu, #mobile-menu-toggle {
            display: block;
        } 
    
        #mobile-menu, body {
            -webkit-transition: left 0.4s ease-in-out 0s;
            -moz-transition: left 0.4s ease-in-out 0s;
            transition: left 0.4s ease-in-out 0s;
        }
        body {
            overflow-x: hidden;
            position: relative;
            left: 0;
        }
    
        body.push-right {
          left: 240px;
        }
    }
    
    #16307
    PernillaA
    Member

    Ii am sorry but I can not make it work. Can you tell me in which line in css I put this. I tried at row 614.
    I am sorry for the inconvenice!

    #16318
    Veena
    Moderator

    Pls go to Appearance > Themeoptions > Custom CSS tab and copy paste the custom CSS there and save changes. You are done.

Viewing 7 posts - 1 through 7 (of 7 total)
  • The forum ‘Agile Theme Support’ is closed to new topics and replies.