Okay
  Public Ticket #1483807
Set Menu Mobile
Closed

Comments

  • hebert started the conversation

    Hello,

    I would like your help for two items in the mobile menu, the primer would like to remove the account option, the second I would like to change the bo button side to access the menu.

    Best Regards

  •  605
    WordPress replied

    Hi,

    You install child theme and active. Then, You go to Appearance -> Editor and add style css:

    .header-v5 .header-logo {
        left: 15px;
    }
    .header-v5 .open-menu-mobile {
        float: right;
    }
    .nav-sections .nav-tabs > li{
        width: 100%;
    }
    .nav-sections .nav-tabs > li:last-child{
        display: none;
    }
    Paul


  •   hebert replied privately
  •  605
    WordPress replied

    Hi,

    You can add style and clear cache:

    header.header-v5 .header-logo {
        left: 15px;
    }
    header.header-v5 .open-menu-mobile {
        float: right;
        padding-bottom: 20px;
    }
    .nav-sections .nav-tabs > li{
        width: 100%;
    }
    .nav-sections .nav-tabs > li:last-child{
        display: none;
    }