Expired
Is there CSS that I can use to hide the menu on a specific page based on the page ID?
I want to create a payment transaction page that doesn’t visibly link to the rest of the site.
Thanks!
Hello,
Open the debugging window on your browser, go to body element and get the page id ( or get the page it at WP backend, edit the page. you can find the id on your browser url bar).
View post on imgur.com
The css:
.page-id-909 .header_wrapper { display: none; }
Replace the page id with the one you want.
Best regards!
You must be logged in to reply to this topic.