April 24, 2019 at 4:35 pm
#62760
Theme Horse Support Team
Keymaster
Hello Rufando,
To hide the Navigation menu in Pages Posts and hide the search holder just go to Appearance > Customize > Additional CSS and paste below custom CSS code:
.search-toggle {
display: none;
}
@media only screen and (max-width: 767px) {
.home .menu-toggle,
.blog .menu-toggle {
display: none;
}
}
Thank you!