Hi Simon,
Which specific errors don't you understand.
results:
Most of the errors are because you have wrapped your divs in p tags which is not allowed and is also a waste of html. P tags can only contain inline elements and not block elements.
Just use the p tag without the div.
wrong:
Code:
<p>
<div class="serviceboxes"> <img src="images/adsXposed_Icon.gif" alt="adsXposed" /><a href="http://www.dynamic-xchange.com/DXServices/adsXposed_Personal.php" title="DXSynergy - adsXposed"> adsXposed</a> (for Webmasters)</div>
</p>
right:
Code:
<p class="serviceboxes"> <img src="images/adsXposed_Icon.gif" alt="adsXposed" /><a href="http://www.dynamic-xchange.com/DXServices/adsXposed_Personal.php" title="DXSynergy - adsXposed"> adsXposed</a> (for Webmasters)</p>
Divs should only be used when there is no semantic html that will do the job in hand and this is rarely the case. Divs are really just generic, non-semantic page divisions to separate the content into logical chunks.
In reality you should never have content sitting in bare divs because there will always be a more suitable html element that will do the job better.
Bookmarks