Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

Replace search bar text WordPress

  • SOLVED

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/

Answers (2)

2012-09-26

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">

2012-09-26

Michael Caputo answers:

It should be in your http://mylacrosseprogram.com/laxtrainers/wp-content/themes/listings/searchform.php