Larger Text in Mobile drop down

How can I make the text in the mobile burger menu drop down increase in size and bold.

And how to make the text change color as you click on that page?

Thanks

Hello @rotation,

Thanks for writing in!

To increase the text in your mobile menu, please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)

.x-navbar .x-nav-wrap.mobile .x-nav > li > a {
    font-size: 16px;
    font-weight: bold;
}

To change the color as you click the menu item, you can use this code:

.x-navbar .x-nav-wrap.mobile .x-nav > li > a:focus {
  color: red;
}

Hope this helps. Please let us know how it goes.

This 100% worked thanks

We’re glad it worked.

Cheers!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.