Uber Menu Below Header X Pro

Hi,

We are trying to place our uber menu below our X Pro header i.e. navbar below header. We can’t seem to figure out how to have the navbar sit below the header. Assigning the menu in the usual way does not show it up. Using Uber menu menu swapper does not show it up. I will include our page and logins for your review. Please note we have a holding site sitting over our redevelopment, you will need to click the subdirectory I have provided to see a page that has this issue.

Thanks

Hi,

To achieve that, you can add the code below in your child theme’s functions.php file.

function add_ubermenu() {
    ubermenu( 'main' ); 
}

add_action( 'x_after_view_global__slider-below', 'add_ubermenu', 10 );

Make sure to add a default Menu.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.