Skip to content

Instantly share code, notes, and snippets.

@MortenAndersen
Forked from mattfarina/gist:751854
Created July 11, 2014 09:56
Show Gist options
  • Save MortenAndersen/5668ed07115130c47b5c to your computer and use it in GitHub Desktop.
Save MortenAndersen/5668ed07115130c47b5c to your computer and use it in GitHub Desktop.
/**
* Implements hook_form_alter().
*
* Courtesy of JohnAlbin
*/
function THEMENAME_form_search_block_form_alter(&$form, &$form_state) {
$form['actions']['submit']['#type'] = 'image_button';
$form['actions']['submit']['#src'] = drupal_get_path('theme', 'THEMENAME') . '/images/button-search.png';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment