Search
-
Is it possible to remove the search from the menu on my website?
The blog I need help with is: (visible only to logged in users)
-
Hi there,
You can use custom CSS to hide the search bar.
You can add the following snippet to your custom CSS.
`
form#searchform {
display: none;
}
`
You can refer the below link on how to add custom CSS:
https://en.support.wordpress.com/custom-design/editing-css/Hope this helps!
- The topic ‘Search’ is closed to new replies.