Theming image buttons in Drupal
Here is a simple code snippet for those who want to make some of the submit buttons on their Drupal website image buttons: function MYTHEME_button($element) { if ($element['#value'] == t('Search')) { $element['#src'] = drupal_get_path('theme', 'MYTHEME') . '/images/search_button.png'; $element['#button_type'] = 'image_button'; } if ($element['#button_type']…