• Resolved jeggernaut

    (@jeggernaut)


    I have logo moving up and down the page with the mobile menu, but want logo to stay in fixed position. How do I do this?

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Rui Guerreiro

    (@takanakui)

    Hi @jeggernaut,

    Guess you want the Header to scroll with the page content.

    Add the code below to your custom js option.

    jQuery( document ).ready(function() {
      jQuery( 'body' ).after( jQuery( '.mob-menu-header-holder' ).detach() );
    });

    Also add this custom css.

    .mob-menu-header-holder {
      position: absolute!important;
    }

    Clear the cache and test again.

    Thread Starter jeggernaut

    (@jeggernaut)

    Hi Rui. This fixes both the logo and the menu to the header. But I need just the logo to fix to the header and for the Menu to continue to scroll with page content.

    Plugin Author Rui Guerreiro

    (@takanakui)

    Try to add this to the “Sticky HTMl elements” option inside the General Options tab.

    .mobmenur-container

    Also add this code to the custom css option.

    .mobmenur-container {
        position: fixed!important;
    }
    Plugin Author Rui Guerreiro

    (@takanakui)

    Will close the topic for now.
    Let me know if you need further help with this.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘I want moving menu but fixed position logo’ is closed to new replies.