I'd like to replace the search bar text on this page that says "Enter search keywords" with "Search Here Using Names or Details of Coaches"
http://mylacrosseprogram.com/laxtrainers/search/
Arnav Joy answers:
find this input box
<input id="s-main" class="field full s ac_input" type="text" onblur="if (this.value == '') {this.value = 'Enter search keywords';}" onfocus="if (this.value == 'Enter search keywords') {this.value = '';}" value="Enter search keywords" name="s" autocomplete="off">
and replace it with
<input id="s-main" class="field full s ac_input" type="text" onblur="if (this.value == '') {this.value = 'Search Here Using Names or Details of Coaches';}" onfocus="if (this.value == 'Search Here Using Names or Details of Coaches') {this.value = '';}" value="Search Here Using Names or Details of Coaches" name="s" autocomplete="off">
Michael Caputo answers:
It should be in your http://mylacrosseprogram.com/laxtrainers/wp-content/themes/listings/searchform.php