Okay
  Public Ticket #2244027
How to add a mobil menu?
Closed

Comments

  • edgar_loftspa started the conversation

    The mobile menu appears on the home page but does not appear on another category page.

    How to add a mobil menu in category page?

  •  608
    WordPress replied

    Hello,

    You can install and active child theme. Then, you can add style css in file style.css in child theme.

    @media (max-width: 991px){
        .header-04 .header-top .menu-icon {
            top: -27px;
        }
        .header-04 .header-top {
            padding-bottom: 23px;
        }
        .header-04 .header-top .menu-icon .ti-menu {
            color: #333333;
        }
        .home .header-04 .header-top .menu-icon .ti-menu {
            color: #fff;
        }
    }


  • edgar_loftspa replied

    The menu appears on the main page but not in categories and store

    I include your code

    How can I see in categories and store the menu?

  •  608
    WordPress replied

    Hello,

    I have not seen you add css in child theme. If you do not have the child theme installed, you can add css in Appearance -> Customize -> Advanced -> Custom CSS



  • edgar_loftspa replied

    Thanks!