Quote Originally Posted by therummagehole View Post
I give up, tried everything I can think off. I'm sure this is an easy fix, i'm just out of my depth lol
Okay, this is what I did, which works for me ;-) I realized after seeing your post that I never actually got back to this as looking at it again now it is not quite right... but does still work.

tpl_product_info_display.php:
PHP Code:
<!-- bof save for later -->
        <?php 
          
if (isset($_SESSION['customer_id']) && $_SESSION['customer_id'] != '') {
              echo 
"&nbsp;"
              echo 
'<input class="cssButton submit_button button_save_for_later" onmouseover class="cssButtonHover submit_button button_save_for_later" onmouseout class="cssButton button_save_for_later" type="submit" value="' BUTTON_SAVE_FOR_LATER_PRODUCT_ALT '" name="sfl" />' 
          }
        
?>
<!-- eof save for later -->
stylesheet_css_buttons.css:
I added these to my existing 'button_in_cart' CSS as/where appropriate. I use a 'button_in_cart_lg' version for the Add to Cart button on the product info page and have the 'save for later' button looking the same as 'add to cart'.

input.button_save_for_later
input.button_save_for_later:hover
input.button_save_for_later:active

Hope this helps.

Cheers
GAM