Remove Header Search Icon
- The topic ‘Remove Header Search Icon’ is closed to new replies.
Need help? Check out our Support site, then
Hello Taras,
I haven’t had any success using this CSS you shared earlier to remove the search icon in the header menu.
@media only screen and (min-width: 992px) {
#sidebar-button::before {
display: none;
}
}
Any chance you could help me out? Thanks!
The blog I need help with is: (visible only to logged in users)
Hello Nate,
The theme’s icons library has been refactored for better performance and accessibility. This is the reason why that custom CSS does not work. Please use this one instead:
@media (min-width: 992px) {
.toggle-sidebar-button svg:nth-of-type(1) {
display: none;
}
}
Let me know if you have any additional questions.
Kind regards,
Taras
Awesome…thanks so much! Don’t think I ever would have figured that one out :)
You are very welcome! :)