OK.. I solved this..
Grab the file in the main theme folder kleo/bbpress/form-search.php
Copy it to your child theme kleo-child/bbress/form-search.php
And change the following:
On line 16, change from:
COPY CODE
<input tabindex="<?php bbp_tab_index(); ?>" type="text" value="<?php echo esc_attr( bbp_get_search_terms() ); ?>" name="bbp_search" id="bbp_search" />
to:
COPY CODE
<input tabindex="<?php bbp_tab_index(); ?>" type="text" placeholder="<?php _e( 'Search Forums...', 'bbpress' ); ?>" value="<?php echo esc_attr( bbp_get_search_terms() ); ?>" name="bbp_search" id="bbp_search" />
You guys might want to change this file in the theme so that there is consistency in the looks.
Thanks!
Charles