Full main menu in mobile, no button

Hello,

How to easily remove the collapse button (“Hamburger”) and show only the links when in mobile?

I guess they would be centered and vertical.

Thanks!

Hi @ricolephilosophe,

Thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS

@media (max-width: 767px) {
.navbar-collapse.collapse {
    display: block;
    position: relative;
    text-align: center;
    top: 0;
}

.navbar-default .navbar-toggle{
  display: none;
}
}

Best Regards,
Movin