Site logo

[Resolved] modify the head part

Home Forums Support [Resolved] modify the head part

Home Forums Support modify the head part

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

    Hello. On this site, I have 5 main menu item, but when the screen is reduced, the structure of menu is broken. I want to put the menu item horizontally untill it becoms mobile menu.

    Also, when you see the last menu item, which is 언어, there is submenu. I want to reduce the width of submenu of 언어.

    #2525289
    Fernando
    Customer Support

    Hi Jusung,

    You can try adding this through Appearance > Customize > Additional CSS:

    .header-wrap ul#menu-main-menu {
        flex-wrap: nowrap;
        width: 70%;
        justify-content: center;
    }
    
    .header-wrap ul#menu-main-menu  > li.menu-item-has-children > .sub-menu{
        width: 100px;
    }

    You can replace the 100px value with your preference. This defines the sub-menu width.

    #2525336
    Jusung

    Thank you!

    It works!

    #2525340
    Fernando
    Customer Support

    You’re welcome, Jusung!

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.