Hello, I am currently using the dynamically generated product pages for my store http://jalenscloud.com/cart/store/agora.cgi. When you click on one of the categories you are taken to the appropriate product page. On this product page each item is separated by its own bordered cell.
I am trying to get rid of the Checkout link, and change the View Cart text link to a specific button image that I have. I have done this by modifying the productPage.inc file.
Here is the code in the original version of the file:
<td width='33%' align=center>
<A HREF="%%scripturl%%?dc=1&%%href_fields%%"><FONT FACE=ARIAL>View Cart</FONT>
</A>
</td>
<td width = '33%' align=center>
<A HREF='%%StepOneURL%%?order_form_button.x=1&%%href_fields%%'><FONT
FACE=ARIAL>Check Out</FONT>
</A>
</TD>
My modified version looks like this:
<td width='33%' align=center>
<A HREF="%%scripturl%%?dc=1&%%href_fields%%"><IMG SRC="/Images/View_Cart.jpg">
</A>
</td>
(Note that the code that is normally here as been deleted)
While this modification does reach the desired affect one undesired affect occurs. The border around the cells separating each item disappears and instead of the items displaying as left cell right cell; new row; left cell right cell; new row centered cell. All the items are simply displayed in a list that scrolls down the page.
Any idea how to make this modification and still keep the product page in its original format?