Hi!
I have a simple question: how can I hide the main menu on the project sites - if I use the fullscreen slider addon?
-
fullscreen slider / how to hide the menu
-
html.fp-enabled body[data-type="project"] nav.primary{ display: none; }
:)
-
Thanks arminunruh! Is the code the same íf I don’t use any addon? And do I have to put the code in the "Custom CSS for Desktop Version"?
-
when there is no fullscreen slider just use:
body[data-type="project"] nav.primary{ display: none; }
yes in "Custom CSS for Desktop Version"
-
great! thank you!! **