Sure, you can do that in a few steps.
The first piece is this code which hides the social media icons and search bar everywhere:
.social-media-icons,
.site-header .search-form-container {
display: none;
}
To limit it to one page/post in particular, you update the CSS selectors like this:
.singular-post-44 .social-media-icons,
.singular-post-44 .site-header .search-form-container {
display: none;
}
This will hide them only on a post with the ID 44. You can follow these steps to find the ID of any page or post.
If you wanted to hide them on a page with an ID of 17 too, you would update the code like this:
.singular-post-44 .social-media-icons,
.singular-post-44 .site-header .search-form-container,
.singular-page-17 .social-media-icons,
.singular-page-17 .site-header .search-form-container {
display: none;
}
-
This reply was modified 7 years, 9 months ago by
Ben Sibley.