Hi,
I have a page at hgcorner.com that runs on price tapestry script. However, I can't get the featured product section validated in HTML(www.W3C.com). It keeps complaining about the two table tags. Would you be able to help? Please go to the page and click at the validation link at the bottom and you'll see what I mean.
Thanks for your help.
David,
It worked. You provide the best support I have ever seen for a product. I appreciate your prompt responses.
Thanks You.
Hi,
Yes - I can see the problem, and it is to do with the way html/featured.php has been modified to show the featured products in rows. Assuming that you have used the code from this thread:
http://www.pricetapestry.com/node/284
...it looks like that because the number of products on each row is even, an empty TR (table row) is created, which is not valid without any TD's.
The easiest way to fix this is I think to simply add an empty cell at the point where the closing TR is generated. In your html/featured.php, look for the closing table code near the end of the file as follows:
</tr>
</table>
</div>
...and change this to:
<td></td>
</tr>
</table>
</div>
Cheers,
David.