View Single Post
  #1  
Old 09-27-2013, 02:18 AM
  fordy3's Avatar 
fordy3 fordy3 is offline
 

Advanced Member
  
Join Date: May 2006
Location: Yorkshire, England
Posts: 65
 

Default 2 validation errors on all product pages

Hello all,

Getting 2 validation errors on my product pages and at a bit of a loss how to solve these. Any help appreciated.

Validation Output: 2 Errors
Error Line 310, Column 9: end tag for "tr" which is not finished
</tr>
Most likely, you nested tags and closed them in the wrong order. For example <p><em>...</p> is not acceptable, as <em> must be closed before <p>. Acceptable nesting is: <p><em>...</em></p>

Another possibility is that you used an element which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, in HTML the <head> element must contain a <title> child element, lists require appropriate list items (<ul> and <ol> require <li>; <dl> requires <dt> and <dd>), and so on.
Error Line 343, Column 15: end tag for "tr" which is not finished
</tr>
Most likely, you nested tags and closed them in the wrong order. For example <p><em>...</p> is not acceptable, as <em> must be closed before <p>. Acceptable nesting is: <p><em>...</em></p>

Another possibility is that you used an element which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, in HTML the <head> element must contain a <title> child element, lists require appropriate list items (<ul> and <ol> require <li>; <dl> requires <dt> and <dd>), and so on.

*********
<table cellspacing="0" class="product-properties" summary="Description">
<tr>
</tr> ********** LINE 310

*********


*********
<table class="save_table">
<tr>
<td valign="top">
<div>
<span class="product-price-value"><span class="currency">&pound;<span id="product_price">5.99</span></span></span>
<span class="product-market-price"></span>
</div>
</td>
</tr>
<tr>
</tr> *********** LINE 343
</table>
</td>
</tr>
<tr>
<td colspan="3"><div id="wl-prices" style="display: none;">
*********
__________________
David Ford
http://youroldbooksandmaps.co.uk

X-Cart Gold Version 4.6.0
Reply With Quote