Page 1 of 1

Menu hidden but still showing on iPad

Posted: 01 Jun 2015, 12:59
by wpisdu
Hi,

Quick one, I have
Code
body: no-footer no-header
and it works well for the desktop version of Safari / Chrome, however the menu is still shown on my iPad.

Is there any easy way to get rid of it?

Thanks!

Re: Menu hidden but still showing on iPad

Posted: 01 Jun 2015, 13:34
by mjau-mjau
Well, the no-header and no-footer classes are basically just quick tools to remove the header and footer section of the website. On mobile, the menu isn't really part of neither the header or the footer ...

You could add your own class to easily achieve this. Go to custom/css/, add the following:
Code
.no-menu .sb-slidebar, .no-menu .sb-toggle {
  display: none !important;
}
Then, in the same "body:" page setting, simply add "no-menu".

Re: Menu hidden but still showing on iPad

Posted: 02 Jun 2015, 10:21
by wpisdu
Working perfectly fine, thank you!

Re: Menu hidden but still showing on iPad

Posted: 08 Jun 2015, 14:42
by mjau-mjau