• I want to change the background color of the menu on the small screen.
    I am overriding this element : #site-navigation, .main-small-navigation li.current-menu-item > .sub-toggle i
    But I can’t override, it is inline-style. Please help me to override it.

Viewing 1 replies (of 1 total)
  • Theme Author Mystery Themes

    (@mysterythemes)

    Hello @tanmaymeh

    Please use the following code in additional CSS box to change the menu background color in mobile devices:

    @media (max-width:767px) {
    .np-header-menu-wrapper, 
    #site-navigation, 
    .main-small-navigation li.current-menu-item > .sub-toggle i {
    	background: #333333 !important;
    }
    }

    Note: change the hexadecimal color code “#333333” to your own color code.

    Thanks 🙂

Viewing 1 replies (of 1 total)
  • The topic ‘Menu background color’ is closed to new replies.