Becky CP
Becky CP

Reputation: 83

Hide main menu but not other menus on mobile

My website is http://www.brightlegal.co.uk. I was having issues making my main menu properly mobile responsive, so I instead opted to install a mobile reponsive menu plugin (I'm using Wordpress). I tried to hide the main menu on mobile devices using this css:

@media screen and (max-width: 768px){
#main-nav-wrap {
   display: none;
}

However, on some of my pages I have "sub menus" to the left. For example, here: http://brightlegal.co.uk/individuals/family/ and with that css implemented it also removes these menus on mobile devices. How can I stop this from happening?

Thanks, Becky

Upvotes: 0

Views: 135

Answers (2)

vignesh
vignesh

Reputation: 1011

For left menu .tb-column-inner #menu-391-1-0-1 { display:block }

Upvotes: 0

max
max

Reputation: 8687

.ui.nav {
  display: inline-block !important;
}

Upvotes: 0

Related Questions