Home Forums Basel support forum How to increase the main menu bar items spacing

How to increase the main menu bar items spacing

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #45502

    hsianglin21
    Participant

    Hi, i find that my main menu bar items spacing are too close, may you advise on how to increase the spacing between them? Thank you.

    #45570

    Artem Temos
    Keymaster

    Hi,

    Could you please send us a link where we can see it on your website?

    #45620

    hsianglin21
    Participant

    Hi, please see attached screenshot

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

    Artem Temos
    Keymaster

    Hi,

    Use the following CSS code snippet to increase this space

    .main-nav .menu>li>a {
        padding-left: 25px;
        padding-right: 25px;
    }
    #45628

    hsianglin21
    Participant

    Thank you. I want to remove the arrow as well in screenshot, may you advise?

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

    hsianglin21
    Participant

    sorry wrong attachment

    #45632

    hsianglin21
    Participant

    sorry resend attachment

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

    Artem Temos
    Keymaster

    Try this code

    .main-nav .menu>li.menu-item-has-children>a:after {
    display:none;
    }
    #45639

    hsianglin21
    Participant

    ok it works, but now when my cursor point at a empty space, the drop down menu appear, i want the drop down menu appear when i point at the category wordings only, may you advise?

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

    Artem Temos
    Keymaster

    Try to replace the first code with this one

    body .main-nav .menu>li {
        padding-left: 25px;
        padding-right: 25px;
    }
Viewing 10 posts - 1 through 10 (of 10 total)