Okay
  Public Ticket #936685
Mobile Menu Text Size
Closed

Comments

  •  1
    hayley started the conversation

    How do I change the size of the font on the mobile device menu?

    How do change the spacing between each line of the menu?

  •  8,996
    Tahir replied

    Hey Hayley,

    Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :

    @media only screen and (max-width: 1000px) and (min-width: 1px) {
        #slide-out-widget-area .inner .off-canvas-menu-container li a {
            font-size: 22px !important;
            line-height: 26px!important;    
        }
    }
    @media only screen and (max-width: 690px) and (min-width: 1px) {
        #slide-out-widget-area .inner .off-canvas-menu-container li a {
            font-size: 18px !important;
            line-height: 22px!important;
        }
    }

    Thanks


    ThemeNectar Support Team