Didn't install the CSS button add-on. Maybe later. In the mean time to make things work I just added a quick fix to html_output (line 295 or so)
I changed:
PHP Code:
if (strtolower(IMAGE_USE_CSS_BUTTONS) == 'yes')
return zenCssButton($image, $alt, 'button', $sec_class, $parameters = '');
to
PHP Code:
if (strtolower(IMAGE_USE_CSS_BUTTONS) == 'yes')
if ( !file_exists(DIR_WS_TEMPLATE . 'buttons/' . $_SESSION['language'] . '/' . $image) )
return zenCssButton($image, $alt, 'button', $sec_class, $parameters = '');
Now, just drop the image file of the specific button you would like to override in the includes/YOUR_TEMPLATE/buttons/english folder and you will have an image button instead of a CSS button.