Changing a hamburger menu into a tab menu in mobile

Hi!
Thanks a lot for a last question!!
Today new one.

I want to change a hamburger menu,in a iphone monitor, into a tab menu that is same design in PC browser.
Please help me!

You can get a regular menu for mobile by adding this CSS code to Appearance >> Theme Options >> Other >> Custom CSS.

@media only screen and (max-width: 767px) {
  #main-nav select { 
    display: none;
  }
  #main-nav ul {
    display: block;
  }
  #main-nav {
    height: auto;
    padding: 0;
  }
}

Let me know if this is what you were looking for.

Thank you so much!!!
The problem was resolved thanks to your support(o^∇^o)ノ

No problem! I’m glad I could help :slight_smile: