
Originally Posted by
leon2lil
Hi
Most recent version that appears on zen cart site.
http://prohairtherapyltd.co.uk/
Also is there a way to turn of the blog and twitter for the moment as these haven't been created yet
Hello -
For some reason it looks like there is an inline style being added to your button. This is not happening for us on a vanilla install of Tableau. One thing you might try is editing line 151 of includes/tableau/templates/tpl_product_info_default.php.
That line currently looks like this:
PHP Code:
$the_button = '<input type="hidden" name="cart_quantity" value="1" /><span class="btn-add-cart">' . zen_draw_hidden_field('products_id', (int)$_GET['products_id']) . zen_image_submit(BUTTON_IMAGE_IN_CART, BUTTON_IN_CART_ALT) .'</span>';
Try changing that to this:
PHP Code:
$the_button = '<input type="hidden" name="cart_quantity" value="1" /><span class="btn-add-cart">' . zen_draw_hidden_field('products_id', (int)$_GET['products_id']) . zen_image_submit(BUTTON_IMAGE_IN_CART, BUTTON_IN_CART_ALT, 'style="width: auto;"') .'</span>';
And let us know if that fixes your issue.
Thanks!
Bookmarks