About Sridhar Katakam
I am an independent WordPress web consultant with 10 years of experience in WordPress theme installation, customization, administration, maintenance, support, documentation, troubleshooting and PSD/design to WP.
Genesis and WordPress Tutorials
Session expired
Please log in again. The login page will open in a new tab. After logging in you can close it and return to this page.
Hi , I am hoping you might elaborate / show example on how to add Text before the search box and how to change text in search box
Hi again, Is there a way to change the color of the resulting search “black box ” above results
This solves my firt question:
You can customize the search form input box text by adding this below part of the code to your functions.php
/** Customize search form input box text */
add_filter( ‘genesis_search_text’, ‘custom_search_text’ );
function custom_search_text($text) {
return esc_attr( ‘Your new search text here’ );
}
Still hoping to find a way to change color of search results box color from black to another color
Have you discover a way to change color & content of button yet?
Thanks,
Daniel