Hello gregbanig!
Here is the solution to resolve your issue:
1) pls open the file templates/ja_rasite/html/mod_search/default.php and try to find the following code:
[PHP]
//$output = ‘<input name=”searchword” id=”mod_search_searchword” maxlength=”20″ class=”inputbox’.$moduleclass_sfx.'” type=”text” size=”‘.$width.'” value=”‘.$text.'” onblur=”if(this.value==”) this.value=”.$text.”;” onfocus=”if(this.value==”.$text.”) this.value=”;” />’;
$output = ‘<input name=”searchword” id=”mod_search_searchword” class=”inputbox’.$moduleclass_sfx.'” type=”text” size=”‘.$width.'” value=”” />’;
[/PHP]
replace:
[PHP]
$output = ‘<input name=”searchword” id=”mod_search_searchword” maxlength=”20″ class=”inputbox’.$moduleclass_sfx.'” type=”text” size=”‘.$width.'” value=”‘.$text.'” onblur=”if(this.value==”) this.value=”.$text.”;” onfocus=”if(this.value==”.$text.”) this.value=”;” />’;
// $output = ‘<input name=”searchword” id=”mod_search_searchword” class=”inputbox’.$moduleclass_sfx.'” type=”text” size=”‘.$width.'” value=”” />’;
[/PHP]
Goodluck