Some Sub Menu Items Not Displaying - Question | JoomShaper
Black Friday sale is live with flat 50% OFF. Sale ends soon! Grab your deal now!

Some Sub Menu Items Not Displaying

K

Kieron

Helix Framework 3 years ago

Hi,

Some sub menu items are not displaying on mt site ..... url below. Pleaae look under Sport .... Its fine on a desktop but the sport sub menus do not appear ..... others do however.

Can you please assist

0
10 Answers
Ofi Khan
Ofi Khan
Accepted Answer
Support Agent 3 years ago #64588

Hello Kieron

Please use this CSS to Template Options -> Custom Code -> Custom CSS

body.ltr .offcanvas-menu .offcanvas-inner ul.menu>li.menu-parent>.nav-header>.menu-toggler{
    right: 0px;
}

Best regards

0
K
Kieron
Accepted Answer
3 years ago #64600

Hi,

That helps and now I see the sub menus but they are not links ? I cannot click them?

Kieron

0
K
Kieron
Accepted Answer
3 years ago #64676

Can support please help? I need this fixed. I can now see the sub menus but they are not clickable. Please.

0
Ofi Khan
Ofi Khan
Accepted Answer
Support Agent 3 years ago #64687

Please use this CSS to Template Options -> Custom Code -> Custom CSS

.offcanvas-menu .offcanvas-inner ul.menu>li.menu-parent li.menu-parent .menu-toggler{
    top: inherit;
}
0
K
Kieron
Accepted Answer
3 years ago #64689

but why is this not in the template? Its rediculous having to add css to fix bugs!

0
K
Kieron
Accepted Answer
3 years ago #64691

Thanks .... but you need to click the tiny > and not the word? I cannot be the only person to use Helix Ultimate with sub menus ... Why do we need to amend CSS ....

0
Ofi Khan
Ofi Khan
Accepted Answer
Support Agent 3 years ago #64700

I am not sure why this issue is created. We will check it before future release. Please use this JavaScript to Template Options -> Custom Code -> Custom JavaScript

jQuery(function($) {
    $(document).on("click", ".menu-deeper", function(event) {
        if (event.target.classList.contains('menu-toggler')) return;
        if (event.target.children.length) {
            event.preventDefault();
            event.stopPropagation();
            $(this)
                .toggleClass("menu-parent-open")
                .find(">.menu-child")
                .slideToggle(400);
        }
    });
});

It will make the title to open the submenu.

0
‏‏‎ ‎J‏‏‎‎e‏‎‏‏‎‎n‏‏‎‎s W.‏‏‎
‏‏‎ ‎J‏‏‎‎e‏‎‏‏‎‎n‏‏‎‎s W.‏‏‎
Accepted Answer
3 years ago #64720

0
K
Kieron
Accepted Answer
3 years ago #64802

Thanks .... its good now but its rediculous that a mature Helix Ultimate framework acts like this ... I should not have to add css for this to work. The off canvas / cellphone menu is critical ... Please report and ensure its fixed. Thank You

0
Ofi Khan
Ofi Khan
Accepted Answer
Support Agent 3 years ago #64848

Sure. Thanks for your feedback.

0