Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #1442586

    hello everyone
    I have added a full-width submenu here
    link below

    my question
    is it possible to adjust the height?
    see printscreen

    the distance at the bottom is smaller the menu is centered vertically
    and a white line between the menu items like on the main menu

    thanks in advance
    kind regards

    Franz

    #1442645

    Hey schweg33,

    Thank you for the inquiry.

    You can use this css code to adjust the height of the sub menu container and the menu items.

    #top .av-submenu-container.av-5hgbq7-277231f29348cd34006a580016280e02, #top .av-submenu-container.av-5hgbq7-277231f29348cd34006a580016280e02 li {
        min-height: 2em;
        line-height: 2em;
    }
    

    Default min-height value is 52px.

    Best regards,
    Ismael

    #1442648

    Hello Ismael
    that fits so well thanks

    but I have several menus
    can you set it so that it is the same for all

    thanks and greetings
    franz

    #1442650

    :-)
    or I have another idea
    could you simply lower the font so that it is centered?

    thanks
    kind regards

    #1442658

    Hi,

    Thank you for the update.

    Please update the css with the following code to apply the changes to every full-width submenu element on the site.

    #top .av-submenu-container, #top .av-submenu-container li {
        min-height: 2em;
        line-height: 2em;
    }

    If you want to move the menu items without adjusting the height of the submenu container, try this css code;

    #top .av-submenu-container li {
        position: relative;
        top: 5px;
    }

    Best regards,
    Ismael

    #1442663

    Hello Ismael
    The shifting of the menu items fits perfectly,
    thanks

    would it still be possible to insert the white vertical lines as in the main menu.

    see printscreen

    thanks
    kind regards
    Franz

    #1442761

    Hi,

    would it still be possible to insert the white vertical lines as in the main menu.

    To add white vertical lines or separator between the menu items, please add this css code.

    #top .av-submenu-container li a {
      border-right: 1px solid #ffffff;
    }
    
    #top .av-submenu-container li:last-child a {
      border-right: 0;
    }
    

    Best regards,
    Ismael

    #1442763

    Hello Ismael
    Thank you very much
    now it is perfect
    you can close this request
    best regards
    Franz

    #1442797

    Hi,

    Thanks for the update, we’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘distance below and intermediate line in white’ is closed to new replies.