Viewing 6 replies - 1 through 6 (of 6 total)
  • Hi Scott,

    This should be possible as you can over-ride the main styles using your own styles.css style sheet or similar. Just set something similar to:

    #click-menu {
    top: auto !important;
    bottom: 10px !important;
    }

    If you can provide me a link to your site I can show you what you need to update if you are not sure.

    Many thanks

    Peter

    Thread Starter Scott Foshee

    (@scott-foshee)

    Thank you so much Peter! I could use either the main menu or the custom menu. Here is the link: https://lallabee.com/wordpress/

    Hi Scott,

    It doesn’t seem like the Plugin is currently installed on your site?

    Can you confirm you have it installed and active inside your admin?

    Many thanks

    Peter

    Thread Starter Scott Foshee

    (@scott-foshee)

    Sorry. It’s now installed and activated. Thank you.

    Thread Starter Scott Foshee

    (@scott-foshee)

    And is it possible to keep the menu from displaying on the first page only? Thank you so much!

    Hi Scott,

    Perfect, I have just checked it out and the changes I suggested earlier should achieve the effect you are after.

    In terms of it not displaying on the front page, adding the following to your functions.php file should do the trick:

    if( is_home() ) {
    
        remove_action( 'wp_footer', array( 'ResponsiveMenu', 'displayMenuHtml' ) );
    
    }

    You can substitute whatever you want inside the if statement above to produce different logic to remove it from specific pages if this doesn’t work.

    Many thanks

    Peter

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Floating sticky menu at the bottom?’ is closed to new replies.