I would like to add an image to the check-out screen (step 1 only).
Where should this be done and how do I not have it show on the other 2 check-out screens? I would like it to appear below the special instructions/comment field.
I would like to add an image to the check-out screen (step 1 only).
Where should this be done and how do I not have it show on the other 2 check-out screens? I would like it to appear below the special instructions/comment field.
includes - templates - YOURTEMPLATE - templates - tpl_checkout_shipping_default.php
line 129...ish
<div>
<img src="<?php echo DIR_WS_TEMPLATE_IMAGES; ?>my_new_image.jpg" border="0" alt="My Image" />
</div>
you will need to put your my_new_image.jpg into
includes - templates - YOURTEMPLATE - images
hope this helps
~Steve~
That worked great. Now, is there a way to make the center column wider to accomodate my image. I don't have anything in the left or right columns so I should be able to grow the center column and move it to the left.
you can turn those columns off in the admin -> layout settings... otherwise the stylesheet.css will contain the width:size...
~Steve~