Hello. I have installed the agora cart to my website and am currently trying to get my product pages to display correctly. I have used the 1b .inc file as a start and I am "tweaking" it to get what I want. New to html design and am learning as I go. I simply want the following for each of my product pages:
1) Store logo at top (left aligned)
2) Product Category (left aligned)
3) Product rows (left aligned) with picture, product name, description, quantity entry, add to cart button, check out field.
4) End field containing our address and copyright information.
See the following page for what I have currently:
www.coralreefaquarium.net -> Livestock -> Hard Corals -> Blastomussa
As you can see, I don't have pictures yet. Also, I seem to have a problem getting my product rows to "stack". For some reason I have a first product with the second product being aligned to the right of the first product. Also, the copyright/address field starts to the right of the second product field. Can you help me? Here is my code (I'm sure there is a better way to do a lot of this, but am leaving the things alone that seem to be working.) I'm sure that a lot of you will easily be able to determine what I am doing wrong.
------------------------store_header.inc-----------------------------
<html>
<p><img width=480 height=125 src="%%URLofImages%%/Logo.jpg"></p>
<p><span style='font-size:24.0pt'>%%product%%</span></p>
--------------------productPage-1bcustom.inc-----------------------
<TABLE ALIGN="LEFT">
<TR><TD COLSPAN="3"><HR></TD></TR>
<TR WIDTH="550">
<TD WIDTH="300"><FONT FACE="ARIAL" SIZE="2"><FORM METHOD="post" ACTION="%%scriptURL%%">
%%make_hidden_fields%%<b>%%name%%</b><br>%%description%%<br></FONT></TD>
<!-- PRICE -->
<TD ALIGN="CENTER" WIDTH="100"> <B>%%price%%</B> </TD>
<!--ENTER QUANTITY / ADD TO CART / CHECK OUT TABLE -->
<TD ALIGN="CENTER" WIDTH="160" VALIGN="MIDDLE"><FONT FACE="ARIAL" SIZE="2">
<TABLE>
<TR>
<TD VALIGN="MIDDLE"><INPUT TYPE="TEXT" NAME="%%itemID%%" SIZE="3" MAXLENGTH="3" VALUE="1"></TD>
<TD VALIGN="MIDDLE"><INPUT TYPE="IMAGE" NAME="add_to_cart_button" VALUE="Add To Cart" SRC="%%URLofImages%%/add_to_cart.gif" BORDER="0"></TD>
</TR>
<TR>
<TD></TD>
<TD><A HREF="agora.cgi?dc=1&%%href_fields%%"><FONT FACE=ARIAL size="2"><B>Check Out</B></FONT></A></TD>
</TR>
</TABLE>
</TD>
</TR>
</FORM>
</TABLE>
--------------------store_footer.inc--------------------------
<p><span style='font-size:14.0pt'>Copyright © 2006 by Coral Reef Aquarium - All rights reserved<br>
3430 North Anthony Blvd., Fort Wayne, IN, 260-484-0951</span></p>
</html>
Thanks!