Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Removing A Menu Bar On Certain Pages… Reply To: Removing A Menu Bar On Certain Pages…

#253228
Beverleyh
Participant

There seems to be an id on the body element that is unique to each page – use the developer console to see (F12).

You can use this id to target specific pages in the CSS.

So if the body id on the Contact page is “contact”, and you wanted to hide a menu with a class of “menu”, you could put this in your CSS;

#contact .menu { display:none }

And the menu would only be hidden on the Contact page.