
Originally Posted by
moesoap
Thanks to gjh42 this is now down to 6 errors.
I am still receiving the one listed above and have now noticed that easypopulate 1.2.5.4 is converting <ul id="productDetailsList"> into <ul id=”productDetailsList”> when I add it to the database.
Anyone know why? or the answer to the table error above?
Thanks.
Solved the easypopulate errors by changing the ul id name, I now only have 4 errors can someone offer a solution to this table error?
Code:
Line 575, Column 155: end tag for "table" which is not finished
…;" bgcolor="#FFFFCC" width="500" cellpadding="3" cellspacing="3"></table></div>
✉
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.