<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1042704" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1042704</link>
    <description></description>
    <language>en</language>
          <item>
    <title>If you use just &lt;p&gt; in your</title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/where-can-i-get-specific-question-and-answer-script#comment-1236983</link>
    <description> &lt;p&gt;If you use just &lt;code&gt;&amp;lt;p&amp;gt;&lt;/code&gt; in your forms for the inputs, then whatever you have set in your CSS for &lt;code&gt;p&lt;/code&gt; will affect the layout of the forms with whatever attributes you have in your CSS for &lt;code&gt;p&lt;/code&gt;.&lt;br /&gt;
EG a 20px top margin etc. &lt;/p&gt;
&lt;p&gt;If you use the default p, such as &lt;code&gt;&amp;lt;p&amp;gt;&amp;lt;input type=&amp;quot;text&amp;quot;&amp;gt;&amp;lt;/p&amp;gt;&lt;/code&gt;&lt;br /&gt;
and it looks fine then for the purpose of you getting it validated it will be fine. If you change the CSS for &lt;code&gt;p&lt;/code&gt; it will of course alter your form layout accordingly, which is why I suggested making a specific class for the form inputs.&lt;/p&gt;
&lt;p&gt;But to be honest, if you are going to make a specific class for the form inputs then you are getting into styling your forms with layout, colours etc, which is a good idea, but then you would be better off putting the form in a more appropriate layout such as using lists.&lt;/p&gt;
&lt;p&gt;This is where you are getting into managing the styles and layouts for your entire site, as the default &lt;code&gt;&amp;lt;p&amp;gt;&lt;/code&gt; has CSS for specific areas of your site, other areas you might want a paragraph to have more space below or above, or be indented or whatever. Such as using a specific &lt;code&gt;&amp;lt;p&amp;gt;&lt;/code&gt; with CSS styling for form inputs. If later you want to alter the form layout, it&#039;s the form paragraphs CSS you change, and the default paragraphs that use &lt;code&gt;&amp;lt;p&amp;gt;&lt;/code&gt; around your site will remain unchanged.&lt;/p&gt;
&lt;p&gt;Without this approach, I.E. just using &lt;code&gt;&amp;lt;p&amp;gt;&lt;/code&gt; everywhere on your site with the same CSS, means you cannot change individual areas or aspects of your site.&lt;/p&gt;
&lt;p&gt;So, again, for validation and nothing else just use &lt;code&gt;&amp;lt;p&amp;gt;&lt;/code&gt;, or perhaps use &lt;code&gt;&amp;lt;fieldset&amp;gt;&lt;/code&gt; if you don&#039;t already &lt;/p&gt;
&lt;p&gt;Have a read of this if you want to start adding style to your forms, and of course if you get stuck with it just ask&lt;br /&gt;
&lt;a href=&quot;http://www.alistapart.com/articles/prettyaccessibleforms&quot; title=&quot;http://www.alistapart.com/articles/prettyaccessibleforms&quot;&gt;http://www.alistapart.com/articles/prettyaccessibleforms&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Tue, 13 Jan 2009 17:32:00 +0000</pubDate>
 <dc:creator>greg</dc:creator>
 <guid isPermaLink="false">comment 1236983 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>Greg, what do I do for the</title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/where-can-i-get-specific-question-and-answer-script#comment-1236945</link>
    <description> &lt;p&gt;Greg, what do I do for the xhtml tag for p .form_inputs&lt;/p&gt;
&lt;p&gt;is it  or something like that?&lt;/p&gt;
&lt;p&gt;Because I do have a class p already.&lt;/p&gt;
&lt;p&gt;Thanks mate.&lt;/p&gt;
 </description>
     <pubDate>Mon, 12 Jan 2009 05:30:56 +0000</pubDate>
 <dc:creator>DSSR</dc:creator>
 <guid isPermaLink="false">comment 1236945 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>ahhh, I did that but in the</title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/where-can-i-get-specific-question-and-answer-script#comment-1236940</link>
    <description> &lt;p&gt;ahhh, I did that but in the wrong palce.. &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/big.png&quot; title=&quot;Laughing out loud&quot; alt=&quot;Laughing out loud&quot; class=&quot;smiley-content&quot; /&gt; I checked some other form I had which validated and I knew it had to do with a container, but where to place it had me, because it doesnt work at teh start of the whole form.&lt;/p&gt;
&lt;p&gt;Thanks champ,I really appreciate this &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/big.png&quot; title=&quot;Laughing out loud&quot; alt=&quot;Laughing out loud&quot; class=&quot;smiley-content&quot; /&gt;..&lt;/p&gt;
&lt;p&gt;Have a good one!&lt;/p&gt;
 </description>
     <pubDate>Mon, 12 Jan 2009 02:30:52 +0000</pubDate>
 <dc:creator>DSSR</dc:creator>
 <guid isPermaLink="false">comment 1236940 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>In XHTML strict, &lt;input&gt; is</title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/where-can-i-get-specific-question-and-answer-script#comment-1236939</link>
    <description> &lt;p&gt;In XHTML strict, &lt;code&gt;&amp;lt;input&amp;gt;&lt;/code&gt; is not a valid child element of &lt;code&gt;&amp;lt;form&amp;gt;&lt;/code&gt;.&lt;br /&gt;
An input tag has to be wrapped with a block-level element that allows inline elements to be in them, such as &lt;code&gt;&amp;lt;p&amp;gt;&lt;/code&gt; or &lt;code&gt;&amp;lt;fieldset&amp;gt;&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;Make sure you don&#039;t have a default class in your CSS for &lt;code&gt;&amp;lt;p&amp;gt;&lt;/code&gt; or &lt;code&gt;&amp;lt;fieldset&amp;gt;&lt;/code&gt; or whatever you choose to use.&lt;br /&gt;
such as&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;p{&lt;br /&gt;margin: 20px;&lt;br /&gt;}&lt;/code&gt;&lt;/div&gt;&lt;br /&gt;
etc&lt;br /&gt;
As this would alter your form layout/appearance.&lt;/p&gt;
&lt;p&gt;You can of course set yourself a specific class or id for forms...&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;p .form_inputs{&lt;br /&gt;margins, padding, whatever&lt;br /&gt;}&lt;/code&gt;&lt;/div&gt;&lt;/p&gt;
 </description>
     <pubDate>Mon, 12 Jan 2009 01:49:00 +0000</pubDate>
 <dc:creator>greg</dc:creator>
 <guid isPermaLink="false">comment 1236939 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>aha!
so a form requires a</title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/where-can-i-get-specific-question-and-answer-script#comment-1236938</link>
    <description> &lt;p&gt;aha!&lt;/p&gt;
&lt;p&gt;so a form requires a container such as a p element - what about div? or span? &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/confused.png&quot; title=&quot;Confused&quot; alt=&quot;Confused&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Mon, 12 Jan 2009 01:10:45 +0000</pubDate>
 <dc:creator>decibel.places</dc:creator>
 <guid isPermaLink="false">comment 1236938 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>Sorry, didn&#039;t think about</title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/where-can-i-get-specific-question-and-answer-script#comment-1236937</link>
    <description> &lt;p&gt;Sorry, didn&#039;t think about the validation, it is xhtml. to validate it use this code in the form spot in the php.&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 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 xmlns=&amp;quot;http://www.w3.org/1999/xhtml&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;head&amp;gt;&lt;br /&gt;&amp;lt;meta http-equiv=&amp;quot;Content-Type&amp;quot; content=&amp;quot;text/html;charset=utf-8&amp;quot;/&amp;gt;&lt;br /&gt;&amp;lt;title&amp;gt;Coupon Code Enter&amp;lt;/title&amp;gt;&lt;br /&gt;&amp;lt;/head&amp;gt;&lt;br /&gt;&amp;lt;body&amp;gt;&lt;br /&gt;&amp;lt;form id=&amp;quot;user_guess&amp;quot; action=&amp;quot;couponcode.php&amp;quot; method=&amp;quot;post&amp;quot;&amp;gt;&amp;lt;p&amp;gt;&lt;br /&gt;Enter coupon code here&amp;lt;input type=&amp;quot;text&amp;quot; name=&amp;quot;user_guess&amp;quot; /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;&amp;lt;input type=&amp;quot;submit&amp;quot; value=&amp;quot;Guess Code&amp;quot; /&amp;gt;&lt;br /&gt;&amp;lt;/p&amp;gt;&amp;lt;/form&amp;gt;&lt;br /&gt;&amp;lt;/body&amp;gt;&lt;br /&gt;&amp;lt;/html&amp;gt;&lt;/code&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;Hope this clears things up a bit.&lt;/p&gt;
 </description>
     <pubDate>Mon, 12 Jan 2009 00:55:45 +0000</pubDate>
 <dc:creator>cmoyer</dc:creator>
 <guid isPermaLink="false">comment 1236937 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>nah its okay, Ill leave it,</title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/where-can-i-get-specific-question-and-answer-script#comment-1236936</link>
    <description> &lt;p&gt;nah its okay, Ill leave it, better working than broken &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/big.png&quot; title=&quot;Laughing out loud&quot; alt=&quot;Laughing out loud&quot; class=&quot;smiley-content&quot; /&gt;..Validate can eat me &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/tongue.png&quot; title=&quot;Sticking out tongue&quot; alt=&quot;Sticking out tongue&quot; class=&quot;smiley-content&quot; /&gt;...At least my index is validated &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/wink.png&quot; title=&quot;Wink&quot; alt=&quot;Wink&quot; class=&quot;smiley-content&quot; /&gt;..&lt;/p&gt;
&lt;p&gt;lol..thanks champ &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; have a great day!&lt;/p&gt;
 </description>
     <pubDate>Mon, 12 Jan 2009 00:00:14 +0000</pubDate>
 <dc:creator>DSSR</dc:creator>
 <guid isPermaLink="false">comment 1236936 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>beats me - something is</title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/where-can-i-get-specific-question-and-answer-script#comment-1236935</link>
    <description> &lt;p&gt;beats me - something is screwy&lt;/p&gt;
&lt;p&gt;try hacking out sections and validating to narrow down the culprit&lt;/p&gt;
&lt;p&gt;or you could begin by validating the form code to make sure it validates, then adding pieces until it breaks...&lt;/p&gt;
 </description>
     <pubDate>Sun, 11 Jan 2009 23:46:32 +0000</pubDate>
 <dc:creator>decibel.places</dc:creator>
 <guid isPermaLink="false">comment 1236935 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>Its the code that cmoyer</title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/where-can-i-get-specific-question-and-answer-script#comment-1236933</link>
    <description> &lt;p&gt;Its the code that cmoyer posted at first. It seems there is a Form tag open, then its closed.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.only-the-truth.com/couponcode.php&quot; title=&quot;http://www.only-the-truth.com/couponcode.php&quot;&gt;http://www.only-the-truth.com/couponcode.php&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Click the XHTML validation icon, then click show source when you try validate it. It seems to be okay?&lt;/p&gt;
 </description>
     <pubDate>Sun, 11 Jan 2009 21:47:48 +0000</pubDate>
 <dc:creator>DSSR</dc:creator>
 <guid isPermaLink="false">comment 1236933 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title>maybe &lt;form ... &gt; tag was</title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/where-can-i-get-specific-question-and-answer-script#comment-1236931</link>
    <description> &lt;p&gt;maybe &lt;code&gt;&amp;lt;form ... &amp;gt;&lt;/code&gt; tag was not opened?&lt;/p&gt;
 </description>
     <pubDate>Sun, 11 Jan 2009 21:35:26 +0000</pubDate>
 <dc:creator>decibel.places</dc:creator>
 <guid isPermaLink="false">comment 1236931 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
