Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1420862

    Hi, I am interested in creating a one page design using the Enfold theme and wondering if there is a way to create a floating Nav Bar that hovers at the lower center of the web page.

    Any ideas / suggestions?

    Here is a reference link to a web page utilizing this kind of design:
    https://www.designjoy.co

    Thanks,

    GB

    • This topic was modified 11 months, 3 weeks ago by gb.
    #1420865

    Hey gb,

    Thank you for the inquiry.

    This should be possible with a Fullwidth Submenu element. Please add the element in the page, go to the Advanced > Developer Settings panel, then add the class name “av-floating-sub-menu” in the Custom CSS Class field. Afterwards, add the following css code to make the submenu float at the bottom of the page.

    #top .av-floating-sub-menu {
        position: fixed !important;
        bottom: 50px;
        width: 70%;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 50px;
        top: auto !important;
    }
    

    If you want the submenu to display on all pages without manually adding it in the editor, extract the shortcode of the element by enabling the debug mode, then use template hooks such as ava_after_content_templatebuilder_page.

    add_action('ava_after_content_templatebuilder_page', function() {
      // place the submenu shortcode here 
    }, 10);
    

    To enable the debug mode, please check the documentation below.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode

    Best regards,
    Ismael

    #1420993

    Thanks for the info, have a great weekend!

    #1421007

    Hi,

    Great, I’m glad that Ismael could help you out. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Possible to create a Nav Bar floating near the bottom?’ is closed to new replies.