your error is due to a unpaired tag like a <img src=""> or even <meta title=""> if you have found that your custom code is fine, then it is within the theme-base code. so lets take a look. .00.
Try using Firefox for html source checking, anything in red text in the source view is not closing properly for the browser. Does that make sense for you . Okay so the solution.
You have to change the code in.
OPEN:
qa-theme-base.php
LINE:
185 function doctype()
ADD:
at the end on the unpaired tag add /
so it looks like this.
$this->output('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"/>');
* notice the trailing slash at the end, it was missing in the main code.
Hope thiswas helpful.
Please vote me as best answer if this is your fix.