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…

#253231
Atelierbram
Participant

The menu on the page has these two classes set: Header-nav Header-nav--primary, so to target that one:

#collection-58b04c4e37c5814f6636bd7e .Header-nav--primary {
  display: none;
}

Using DevTools, ‘inspect element’ will help you find these things.