Alpha1

Customer
Is there any way to add 3rd level navigation links to the Navtab menu and off canvas menu?
Through xenbase or another tool that you may know?
 
Is there any way to add 3rd level navigation links to the Navtab menu and off canvas menu?
Through xenbase or another tool that you may know?

You can do it via manual links, if you look inside our xb_offcanvas_helper_bottom

Our example is of a basic popup:
Code:
<!-- START Example Custom Off Canvas Link -->
<li class="navTab customTab PopupClosed">       
    <a href="{xen:link search}" rel="Menu" class="navLink">Custom Tab</a>
        <div class="xbOffCanvasSubMenu">
            <ul>
                <li><a href="#">Custom Link 1</a></li>
                <li><a href="#">Custom Link 2</a></li>
                <li><a href="#">Custom Link 3</a></li>
                <li><a href="#">Custom Link 4</a></li>
            </ul>
        </div>
</li>

If you add a new list inside t hat "Custom Link1" like so:

Code:
<li class="navTab customTab PopupClosed">       
    <a href="{xen:link search}" rel="Menu" class="navLink">Custom Tab</a>
        <div class="xbOffCanvasSubMenu">
            <ul>
                <li><a href="#">Custom Link 1</a>
                    <div class="xbOffCanvasSubMenu">
                    <ul>
                        <li><a href="#">Sub sub link1</a></li>
                        <li><a href="#">Sub sub link1</a></li>
                        <li><a href="#">Sub sub link1</a></li>
                    </ul>
                    </div>
                </li>
                <li><a href="#">Custom Link 2</a></li>
                <li><a href="#">Custom Link 3</a></li>
                <li><a href="#">Custom Link 4</a></li>
            </ul>
        </div>
</li>

It'll be a dropdown inside a dropdown.
 

Pre-Sale Questions

If you have any questions or concerns you want to ask before you make a purchase don't hesitate to use one of our multiple support channels for your convenience.

Back