hi

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #187906

    jamilamall
    Participant

    I want to add icons to the mobile menu in this way. also how can I change the fonts in the dropdown menu. Can I have it opened sideways. I showed you in the picture. Thank you.

    Attachments:
    You must be logged in to view attached files.
    #187910

    jamilamall
    Participant

    Can I expand the mobile menu further. I want the menu icon in the mobile menu to be this way. Could the search wish list and basket and user login icons be next to each other?.I am too late for support, so please help quickly.

    Attachments:
    You must be logged in to view attached files.
    #187926

    Hello,

    You can add icons to the menu please find the instruction on how to do it: https://xtemos.com/docs/basel/create-mega-menu/

    You can change the font by means of Advanced typography option, which allows to choose the item from a drop-down or insert your custom CSS class. Please navigate to the Theme Settings > Typography > Advanced Typography. https://xtemos.com/docs/basel/advanced-typography-settings-2/

    Here is the documentation providing more detailed instructions: https://xtemos.com/docs/basel/advanced-typography-settings-2/

    Best Regards

    #187943

    jamilamall
    Participant

    I’m talking about the mobile menu. responsive mobile nav menu. Could it be wider full screen and I want to set the drop down submenus to the right. thanks please be css code. I want to use my own logo in the menu.

    #188018

    Hello,

    Please add this code to the Theme Settings > Custom CSS > Global to make the mobile menu full-width:

    body .mobile-nav {
        width: 100%;
    }

    Mobile menu does not support megamenu blocks, You will have to make menu-sub-menu items https://prnt.sc/s1ned2

    Best Regards

    #188085

    jamilamall
    Participant

    The menu has grown very nice but it gives an error on the screen, even if it is not clear, half is visible.

    Is there a site or page of the icons that we can use in the theme? the menu was full screen thanks. The menu remained open, I want to put an x ​​up when we want to go back when we want to close it. Finally, I want to translate and write the wishlist into my language. It says English, I need to write the same Turkish as Login.

    Attachments:
    You must be logged in to view attached files.
    #188105

    Hello,

    I have checked again. It is possible to set the width in pixel only. You can try this code:

    .mobile-nav {
        width: 320px;
    }
    .mobile-nav-from-left .mobile-nav {
        left: 0;
        transform: translate3d(-320px,0,0);
        -webkit-transform: translate3d(-320px,0,0);
        -ms-transform: translate3d(-320px,0,0);
        -sand-transform: translate3d(-320px,0,0);
    }
    .act-mobile-menu .mobile-nav {
          transform: translate3d(0,0,0);
        -webkit-transform: translate3d(0,0,0);
        -ms-transform: translate3d(0,0,0);
        -sand-transform: translate3d(0,0,0);
    }

    Best Regards

Viewing 7 posts - 1 through 7 (of 7 total)