Sub Menu Indicator

Hi guys,

Removed the sub menu indicator on desktop and mobile following this thread: https://theme.co/apex/forum/t/how-to-hide-remove-sub-menu-indicator/39368/2

But on mobile you still have to click on the removed indicator to activate the sub menu. Clicking on the actual word doesn’t do anything.

With indicator:

Without:

  1. Is there a way to fix that?
  2. Is it possible to center align submenu and menu? (second image)
  3. Is it possible to change the indicator icon?

Thank you!

Hi @kcreative,

Thanks for reaching out.

Please add this CSS as well

@media ( max-width: 979px ) {
.x-sub-toggle {
    position: absolute;
    width: 100%;
    z-index: 99999999;
}
.x-navbar .mobile .x-nav ul {
    margin: 0px !important;
}
} 

It should fix the clicking and alignment. And you don’t need to change the indicator since it’s hidden.

Thanks!

Great, that did the trick! Thank you!

You are most welcome. :slight_smile:

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