I'm trying to hide the two top bars on this single wordpress page: / that will eventually serve as a single lead generating landing page with no menu, but I seem to be stuck.
The page id is .page-id-17091 and I've tried inserting a number of css combinations based on previous post answers, but nothing is working. I must be missing something. Can somebody please inspect the page and help me with the css to edit this?
I'm trying to hide the two top bars on this single wordpress page: https://grassiusa/try/ that will eventually serve as a single lead generating landing page with no menu, but I seem to be stuck.
The page id is .page-id-17091 and I've tried inserting a number of css combinations based on previous post answers, but nothing is working. I must be missing something. Can somebody please inspect the page and help me with the css to edit this?
Share Improve this question asked Mar 15, 2020 at 13:55 Wes RobertsWes Roberts 11 Answer
Reset to default 1This should do it:
.page-id-17091 div.fixed-header-box { display: none; }
I'd generally prefer setting the theme up to not generate the header for that page, though, rather than hiding it after the fact.