AdSense won't work with XHTML without a few hacks, because it uses
javascript Document.Write() which doesn't work with XHTML (because
that would allow new markup to be generated while it is still being
parsed), and even if it did, it would create an iframe element which
iteself is not valid for XHTML Strict.
Basically, what you have to do to work around this is move the adsense
code into a separate file and use an object tag with type text/html
e.g.
<object data="/adsense.php" type="text/html"></object>
On Apr 27, 8:02 am, Kerrick Bishto <
christopher.rutherf...@gmail.com>
wrote: