I'm getting this XHMTL error:
This is the actual line of code:
I'm trying to put a title tag with an image that's being called from a css file.
The title tag shows up when you hover over the image, however it's causing the XHTML error.
Any suggestions?
Code:
Line 427, Column 51: document type does not allow element "div" here; missing one of "object", "applet", "map", "iframe", "button", "ins", "del" start-tag
<div id="pageintro" title="Xsyon - Sandbox MMORPG">
The mentioned element is not allowed to appear in the context in which you've placed it; the other mentioned elements are the only ones that are both allowed there and can contain the element mentioned. This might mean that you need a containing element, or possibly that you've forgotten to close a previous element.
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>").
This is the actual line of code:
Code:
<div id="pageintro" title="Xsyon - Sandbox MMORPG"></div>
I'm trying to put a title tag with an image that's being called from a css file.
The title tag shows up when you hover over the image, however it's causing the XHTML error.
Any suggestions?
Last edited:





