Tagged: search box
How do I change the wording within the search box? Presently it just says “SEARCH”. I want to change it to something like SEARCH ANY PRODUCT or something like that. Thanks!
Hey tylerschwab!
Please add following code to Functions.php file in Appearance > Editor
add_filter('avf_frontend_search_form_param','new_search_placeholder');
function new_search_placeholder( $array){
$array['placeholder'] = __('Search any product','avia_framework');
return $array;
}
Regards,
Yigit
Thanks Perfect. For the actual search box in the search widget I want to change the color of the background and the color of the icon – but only to the search widget. When I changed in general styling other things changed as well which I do not want. Where do I make those changes?
Hi,
Could you provide us with a link to the site in question so that we can take a closer look please?
Thanks,
Rikard
http://testing.bwmarketingspecialties.com/
Not the search box right in the middle of the page – that is what I am referring to.
Regards,
Tyler
try defining some css for
#searchsubmit
like
#searchsubmit {color:red; background-color:green;}