can search button at the top right can be remove?
if can..how can i remove it??please!!need help!!
2 Answers
If you want to remove the search button on the Theme Wallpress, you can log in to Dashboard > Appearance > Editor > open the style.css file add the following code:
#searchform {
display: none;
}
Regards,
Dominic
thank you so much
wait, is it in the Stylesheet (style.css)??
Yes, you can add to the Stylesheet (style.css)
Regards,
Dominic
I just want to remove the search button at the top right not all
To resolve this issue you can add the following code:
#searchform #s {
background: none;
}
Regards,
Dominic
Please login or Register to submit your answer