Okay
  Public Ticket #3361291
Mobile version menu icon not change
Closed

Comments

  • Tofik started the conversation

    In the mobile version, when you click on the menu icon, the icon changes, but then the "x" icon remains and does not change when clicked.

    Attached files:  photo_2023-05-02_23-17-14.jpg

  •  1,627
    Andrey replied

    Hello, Dear Tofik!

    Thank you for your message.

    To fix this issue, please open in code editor file main.css and go to line # 13525.

    Replace here this code:

    .mobile-active было :hover
    

    to the following one:

    .toggle_menu.mobile-active span:before {
        top: 13px;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .toggle_menu.mobile-active span:after {
        top: 13px;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    

    Then perform the same step at line 13441.

    Save changes in file. Clear cache in mobile browser (this is very important) and then check results at front-end.

    Best Regards!