Hi Thierry

If were gonna git nitpicky.
I'd clean up this code on the shopping cart:

<tr valign="top" class="altRowOdd"> 
<td><input name="lineID2" type="hidden" value="59" />
<label for="qty2"><a href="details.asp?prodID=72">Marbled White</a>
(023-BAXS)</label>
<br /> 
&raquo; Color: Black
<br /> 
&raquo; Size: X-Small
</td> 
<td class="aligncenter">$75.00</td> 
<td class="aligncenter"><input id="qty2" name="qty2" type="text" value="1"
size="3" onblur="cleanField(this)" /></td> 
<td class="alignright">$75.00</td> 
<td class="aligncenter"> <input name="remove" type="checkbox"
class="formCheckbox" value="59" /></td> 
</tr>

To:

<tr (alternating row class inserted with js)> 
<td class="colproduct">
<ul>
<li><input name="lineID2" type="hidden" value="59" /> 
<label for="qty2"><a href="details.asp?prodID=72">Marbled White</a>
(023-BAXS)</label></li>
<li>Color: Black</li>
<li>Size: X-Small</li>
</ul>
</td> 
<td >$75.00</td> 
<td class="colquantity"><input id="qty2" name="qty2" type="text" value="1"
size="3" onblur="cleanField(this)" /></td> 
<td class="coltotal">$75.00</td> 
<td class="colremove"> <input name="remove" type="checkbox"
class="formCheckbox" value="59" /></td> 
</tr>


Use CSS to define the alignment on the cells, use an unordered list instead
of br tags.

I like the even/odd rows for tables and divs in this page and the product
page.  If you are not already using the zebraAll.js script from list member
Patrick Lauke, give him a holler. It handles the striping of divs, tables,
lists, and more from one script. I've been using it and absolutely love it.


Will you be releasing this as a package soon? E-commerce forms are a dime a
dozen but there is so little out there that is as well thought-out as this.

Nice work.

Ted




-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of David Laakso
Sent: Thursday, September 15, 2005 8:44 AM
To: wsg@webstandardsgroup.org
Subject: Re: [WSG] Site Check (eStore)

Thierry Koblentz wrote:

>http://www.tjkdesign.com/eStore/
>
>I've put it through a few browsers on PC, but I'm pretty limited on the Mac
>side...
>
>Thanks,
>Thierry | www.TJKDesign.com
>
>
>  
******************************************************
The discussion list for  http://webstandardsgroup.org/

 See http://webstandardsgroup.org/mail/guidelines.cfm
 for some hints on posting to the list & getting help
******************************************************

Reply via email to