Hello there,
Each page has the unique class name attached in the body tag. The name is the combination of page-id
and page ID number.
To hide the menu on a specific page, apply the following CSS code through the Simple Custom CSS plugin or child theme’s style.css:
.page-id-2 .header-wrap .col-md-8{
display: none;
}
Replace 2
with your page ID. To know the page ID of your page, go edit your page. In the web browser’s address bar you will see something like:
http:/yoursite.com/wp-admin/post.php?post=2&action=edit
The value of post
parameter (2) is the page ID.
I hope this reply helps.
Regards,
Kharis