Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #771395

    Hello
    i tried several solutions mentionned in the forum but it never worked
    As some other guys in the forum I would like the main menu in the header to be lower, ideally in line with the bottom of my logo.
    I need help

    thx

    #772436

    Hey noelle,

    Try adding this css code in Quick CSS (located in Enfold > General Styling):

    #top #header .av-main-nav > li > a {
        line-height: 140px !important;
    }

    Hope this helps :)

    Best regards,
    Nikko

    #772478

    Hello

    I did it but it does not change anything
    The position of the menu is the same

    Best regards

    #773839

    Hi,

    I checked it and it seems the > (greater than sign) has been replaced to &_g_t_; (without the _ ). Can you try to replace it and see if it works :)

    Best regards,
    Nikko

    #773846

    Hi

    yes it was the pb! (don’t know the reason)
    The position is good now but there is still a pb:

    I use the ‘Shrinking header’ behavior

    And now, when the header gets smaller, the text stays at the same position , it doesn’t follow
    Something else to add in the CSS?

    Thx

    Noelle

    #774500

    Hi Noelle,

    You’re trying to keep the menu at the bottom of the header with this:

    
    #top #header .av-main-nav > li > a {
        line-height: 140px !important;
    }
    

    It pushes the menu down, but when the header shrinks, this code keeps the menu lower. if you don’t use this css rule, the menu is higher, aligned with social links buttons, looks nicer and works with the shrinking header.

    Here is the solution, if you still want the menu lower and work with the header:

    
    #top #header.header-scrolled .av-main-nav > li > a {
        line-height: 44px !important;
    }
    

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #774550

    Thx !
    it works nice

    Now how can i have the same behavior for the social links button?
    I would like to have the same position ( including when the header shrinks) for them

    Thx again

    Noelle

    #774790

    Hi,

    To move the social icons inline with menu items Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    #header_main nav .social_bookmarks {
        top: 80%!important;
    }
    

    Best regards,
    Vinay

    #774838

    Hi

    Thx, it does work but when the header shrinks they are no more aligned
    The css i’m currently using is:

    #top #header .av-main-nav > li > a {
    line-height: 140px !important;
    }
    #top #header.header-scrolled .av-main-nav > li > a {
    line-height: 44px !important;
    }
    #header_main nav .social_bookmarks {
    top: 80%!important;
    }

    #775032

    Hi,
    Try adding a dot before the “nav”, like this:

    #header_main .nav .social_bookmarks {
    top: 80%!important;
    }

    Best regards,
    Mike

    #779147

    Hello

    it doesn’t work if i had a dot
    if i do so, the behavior is good when the header shrinks, but not in normal position ( social icons are not at the right position)

    what i need is that the social icons are always aligned with the menu

    Regards

    Noelle

    #779528

    Hi Noelle,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    #header.header-scrolled #header_main nav .social_bookmarks {
      top: 50% !important;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #779648

    THX!!!!
    everything works ( position, behavior when shrink,social button position)

    for people who are loking for the same needs, finally i put:

    #top #header .av-main-nav > li > a {
    line-height: 140px !important;
    }
    #top #header.header-scrolled .av-main-nav > li > a {
    line-height: 44px !important;
    }
    #header_main nav .social_bookmarks {
    top: 80%!important;
    }
    #header.header-scrolled #header_main nav .social_bookmarks {
    top: 50% !important;
    }

    Thx again

    BR
    Noelle

    #779747

    Hi,
    Glad Victoria was able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 14 posts - 1 through 14 (of 14 total)
  • The topic ‘menu position’ is closed to new replies.