Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #748891

    Hi,

    I’m not sure this is possible but thought I would ask as you guys tend to find amazing ways to do things.

    I have a client that wants (on page load) “logo left/menu below” and then when you scroll down and the header shrinks have “logo left/menu right”. Is this possible?

    On Page Load

    On Page Scroll

    Thank!
    Slade

    #748896

    Hi Slade!

    Can you please send us a link of your web site?
    We might be able to give a width at the menu and get it below.

    Thanks a lot

    Best regards,
    Basilis

    #748899

    Hi Basilis! Thanks for taking a look.

    The site is in the early stages of development. I am placing login info in the private content area.

    p.s. – I currently have it set as “logo left/menu right” but feel free to play with the Header settings (“logo left/menu below”) as needed.

    Thanks!
    Slade

    #751258

    Hi!

    Thank you for the update. Looks like you manage to accomplished it with the following css code.

    .header-scrolled #header_main_alternate {
        position: absolute;
        top: 25px;
        right: 0;
        width: 77%;
    }

    Cheers!
    Ismael

    #751260

    Hi Ismael,

    Yes, I got it to do what I wanted however in the process of aligning the scrolled navigation to the right it Reversed the menu items. Any ideas?

    Thanks!
    Slade

    #751271

    Hey!

    Please remove this modification.

    .header-scrolled .av-main-nav li {
        float: right !important;
    }

    UPDATE: Add this css code:

    .header-scrolled .av-main-nav li {
        float: none;
        display: inline-block;
    }
    
    .header-scrolled .av-main-nav-wrap ul {
        margin: 0px !important;
        text-align: right;
    }

    Cheers!
    Ismael

    #751273

    Brilliant! Thanks Ismael!

    #752126

    Hi!

    No problem! Glad we could help. :)

    Best regards,
    Ismael

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Menu position on scroll – is this possible’ is closed to new replies.