Reply To: How can I increase size of mobile menu?

#10045696
Support
Keymaster

Hello, try this code:

(css/custom.css)
For the Button:

@media (max-width: 991px) {
    #header .header-btn-collapse-nav {
        width: 65px;
        height: 65px;
		font-size: 1.4em;
    }
}

For the Links:

@media (max-width: 991px) {
    #header .header-nav-main:not(.header-nav-main-mobile-dark) nav > ul > li > a {
        display: block;
        font-size: 1.4em !important;
        padding: 15px 8px !important;
        line-height: 20px !important;
    }
}