Site logo

[Support request] Chnage the menu button

Home Forums Support [Support request] Chnage the menu button

Home Forums Support Chnage the menu button

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2437064
    Jusung

    Hello.

    On the 4th menu button, you can see 5 submenues.
    I firstly wanna remove the arrow next to the name,
    Secondly, the width of submenu is too large.
    I wanna make the same width of submenu with main menu above.
    Thirdly, on the submenu, I wanna make the same background color hoover with main menu.

    Could you help with this?

    #2437100
    David
    Staff
    Customer Support

    Hi there,

    you can use this CSS to set the width of the submenu:

    
    .main-navigation ul ul.sub-menu {
        width: unset;
        left: 0 !important;
        right: 0;
    }

    For the colors, go to Customizer > Colors and edit your Primary Navigation colors, it includes options for the sub menu.

    #2440790
    Jusung

    Thanks! it works. one more question!

    How can I remove the arrow next to thet name of the menu?

    #2440937
    David
    Staff
    Customer Support

    Try this CSS:

    
    @media(min-width: 769px) {
        .menu-item-has-children .gp-icon {
            display: none;
        }
        .menu-item-has-children .dropdown-menu-toggle {
            padding-left: 0 !important;
        }
    }
Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.