<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1031245" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1031245</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/cant-figure-out-xhtml-validation-error#comment-1182737</link>
    <description> &lt;p&gt;Glad to be of service! &lt;/p&gt;
&lt;p&gt;*glint of sun shining off brilliant smile*&lt;/p&gt;
 </description>
     <pubDate>Wed, 19 Oct 2005 00:59:44 +0000</pubDate>
 <dc:creator>JeevesBond</dc:creator>
 <guid isPermaLink="false">comment 1182737 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/cant-figure-out-xhtml-validation-error#comment-1182733</link>
    <description> &lt;p&gt;Thank fixed it, thanks &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Tue, 18 Oct 2005 23:25:01 +0000</pubDate>
 <dc:creator>IanD</dc:creator>
 <guid isPermaLink="false">comment 1182733 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/cant-figure-out-xhtml-validation-error#comment-1182731</link>
    <description> &lt;p&gt;Firstly you&#039;re using xhtml 1.1 and that requires a MIME type of text/xml not text/html this is the first DOCTYPE that shifts you from SGML to XML... But that&#039;s another story.&lt;/p&gt;
&lt;p&gt;Simply put:&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt;&lt;br /&gt;&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.1//EN&amp;quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;html xmlns=&amp;quot;http://www.w3.org/1999/xhtml&amp;quot; xml:lang=&amp;quot;en&amp;quot; &amp;gt;&lt;/code&gt;&lt;/div&gt;&#039;in place of:&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.1 Strict//EN&amp;quot; &amp;quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;html&amp;gt;&lt;/code&gt;&lt;/div&gt;&#039;&lt;br /&gt;
Then change:&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;lt;div id=&amp;quot;search&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;form method=&amp;quot;get&amp;quot; id=&amp;quot;searchform&amp;quot; action=&amp;quot;/blog/index.php&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;input type=&amp;quot;text&amp;quot; value=&amp;quot;&amp;quot; name=&amp;quot;s&amp;quot; id=&amp;quot;s&amp;quot; /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;&amp;lt;input type=&amp;quot;submit&amp;quot; id=&amp;quot;searchsubmit&amp;quot; value=&amp;quot;Search&amp;quot; /&amp;gt;&lt;br /&gt;&amp;lt;/form&amp;gt; &amp;lt;/div&amp;gt;&lt;/code&gt;&lt;/div&gt;&#039; to &lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;lt;form method=&amp;quot;get&amp;quot; id=&amp;quot;searchform&amp;quot; action=&amp;quot;/blog/index.php&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;div id=&amp;quot;search&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;input type=&amp;quot;text&amp;quot; value=&amp;quot;&amp;quot; name=&amp;quot;s&amp;quot; id=&amp;quot;s&amp;quot; /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;&amp;lt;input type=&amp;quot;submit&amp;quot; id=&amp;quot;searchsubmit&amp;quot; value=&amp;quot;Search&amp;quot; /&amp;gt;&lt;br /&gt;&amp;lt;/div&amp;gt;&amp;lt;/form&amp;gt;&lt;/code&gt;&lt;/div&gt;&#039; Either that or:&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;lt;div id=&amp;quot;search&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;form method=&amp;quot;get&amp;quot; id=&amp;quot;searchform&amp;quot; action=&amp;quot;/blog/index.php&amp;quot;&amp;gt;&amp;lt;fieldset&amp;gt;&lt;br /&gt;&amp;lt;input type=&amp;quot;text&amp;quot; value=&amp;quot;&amp;quot; name=&amp;quot;s&amp;quot; id=&amp;quot;s&amp;quot; /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;&amp;lt;input type=&amp;quot;submit&amp;quot; id=&amp;quot;searchsubmit&amp;quot; value=&amp;quot;Search&amp;quot; /&amp;gt;&lt;br /&gt;&amp;lt;/fieldset&amp;gt;&amp;lt;/form&amp;gt;&amp;lt;/div&amp;gt;&lt;/code&gt;&lt;/div&gt;&#039;&lt;br /&gt;
This is because the Document Type &lt;a href=&quot;http://www.mit.edu/~ddcc/xhtmlref/block.html#form_elem&quot; class=&quot;bb-url&quot;&gt;constrains the child elements of a form to block level elements only&lt;/a&gt; (aside from more forms).&lt;/p&gt;
&lt;p&gt;This should fix the problem!&lt;/p&gt;
 </description>
     <pubDate>Tue, 18 Oct 2005 23:01:45 +0000</pubDate>
 <dc:creator>JeevesBond</dc:creator>
 <guid isPermaLink="false">comment 1182731 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/cant-figure-out-xhtml-validation-error#comment-1182728</link>
    <description> &lt;p&gt;I fixed that, but I&#039;m still getting the errors.&lt;/p&gt;
&lt;p&gt;&quot;document type does not allow element &quot;INPUT&quot; here&quot;. It&#039;s inside form tags, so what could be wrong?&lt;/p&gt;
 </description>
     <pubDate>Tue, 18 Oct 2005 22:18:02 +0000</pubDate>
 <dc:creator>IanD</dc:creator>
 <guid isPermaLink="false">comment 1182728 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/cant-figure-out-xhtml-validation-error#comment-1182656</link>
    <description> &lt;p&gt;Not too sure about the parse error:&lt;/p&gt;
&lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;Quote:&lt;br /&gt;
The MIME Media Type (text/html) for this document is used to serve both SGML and XML based documents, and it is not possible to disambiguate it based on the DOCTYPE Declaration in your document. Parsing will continue in SGML mode.
&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Maybe it has something to do with your doctype?&lt;/p&gt;
&lt;p&gt;Also, you need to close off your INPUT tags so this:&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;lt;input type=&amp;quot;text&amp;quot; value=&amp;quot;&amp;quot; name=&amp;quot;s&amp;quot; id=&amp;quot;s&amp;quot;&amp;gt;&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;Becomes this:&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;lt;input type=&amp;quot;text&amp;quot; value=&amp;quot;&amp;quot; name=&amp;quot;s&amp;quot; id=&amp;quot;s&amp;quot; /&amp;gt;&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
 </description>
     <pubDate>Tue, 18 Oct 2005 04:53:12 +0000</pubDate>
 <dc:creator>Renegade</dc:creator>
 <guid isPermaLink="false">comment 1182656 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
