Responsive menu for tablet

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #28477
    mike surma
    Participant

    Is it possible to have a responsive menu on tablets? if so how?

    #28482
    Veena
    Moderator

    Its responsive only. Did you see any responsive issues?

    #28495
    mike surma
    Participant

    I was looking get a responsive menu like on a smartphone. when using a tablet the menu falls under the logo and does not look clean.

    #28505
    Veena
    Moderator

    Can you pls try the below custom CSS in themeoptions –

    @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;
        }
    }
    
    #28515
    mike surma
    Participant

    That works…is there a way to put on the right side of the screen? the button sits on top of my logo on the left side….Thanks for your help.

    #28532
    Veena
    Moderator

    Can i get a link to your site pls?

    #28547
    mike surma
    Participant

    crossfitbond.com

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