Styling Default Select DropDown Fields

style-select-dropdown

The default dropdown select field form element is difficult to style in CSS alone – it needs a bit of jQuery love, here is a guide to add some cleaner styling to change default dropdown sort select fields.   Then one with some jQuery magic… Using select2.js So the above select field was transformed by…

Read More

Change the Search Field Default Text in Genesis WordPress Theme

You can change the default “Search this Website…” text in the Search bar field in a Genesis WordPress theme by using a filter added to your functions.php file. //Change search form text function themeprefix_search_button_text( $text ) { return ( ‘Search text goes here…’); } add_filter( ‘genesis_search_text’, ‘themeprefix_search_button_text’ ); So in the above code a  function is…

Read More