I have an anchor over an image, a subsequent <p>, and a seond image. I'm trying to validate xhtml transitional, and it says, for each of the three elements:
missing one of "object", "applet", "map", "iframe", "button", "ins", "del" start-tag...
One possible cause for this message is that you have attempted to put a block-level element (such as "<p>" or "<table>") inside an inline element (such as "<a>", "<span>", or "<font>").
the format is <a> <h3....><img /> <p> <h3....><img /> </a>
what is a good solution for this?