<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Clean And Accessible Form Foundation</title>
	<atom:link href="http://www.mattvarone.com/web-design/clean-accesible-form-foundation/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mattvarone.com/web-design/clean-accesible-form-foundation/</link>
	<description>Creative Developer</description>
	<lastBuildDate>Tue, 20 Jul 2010 05:52:54 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Tubcat</title>
		<link>http://www.mattvarone.com/web-design/clean-accesible-form-foundation/#comment-2471</link>
		<dc:creator>Tubcat</dc:creator>
		<pubDate>Wed, 14 Apr 2010 15:02:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattvarone.com/?p=215#comment-2471</guid>
		<description>Thanks for the work on this as it has really helped me out. 

One question in regards to making the form accessible, how do you provide accessible error messages to a user who doesn&#039;t fill in required fields?</description>
		<content:encoded><![CDATA[<p>Thanks for the work on this as it has really helped me out. </p>
<p>One question in regards to making the form accessible, how do you provide accessible error messages to a user who doesn&#8217;t fill in required fields?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tsalagi</title>
		<link>http://www.mattvarone.com/web-design/clean-accesible-form-foundation/#comment-2099</link>
		<dc:creator>Tsalagi</dc:creator>
		<pubDate>Mon, 15 Mar 2010 04:21:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattvarone.com/?p=215#comment-2099</guid>
		<description>Matt, Great tut for styling those tedious forms! Just a note. A few comments at the begging noted the accessibility issue of not wrapping the input in the label. I come from the school where elements should not be nested like that, because the input is not a label. For clean markup and accessibility, you can use the  and then give your input an id of phone. This will tie both together so when someone focuses on the label the input gets the focus.
Thanks again for the hard work and for sharing!</description>
		<content:encoded><![CDATA[<p>Matt, Great tut for styling those tedious forms! Just a note. A few comments at the begging noted the accessibility issue of not wrapping the input in the label. I come from the school where elements should not be nested like that, because the input is not a label. For clean markup and accessibility, you can use the  and then give your input an id of phone. This will tie both together so when someone focuses on the label the input gets the focus.<br />
Thanks again for the hard work and for sharing!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jose</title>
		<link>http://www.mattvarone.com/web-design/clean-accesible-form-foundation/#comment-1991</link>
		<dc:creator>jose</dc:creator>
		<pubDate>Tue, 09 Mar 2010 00:59:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattvarone.com/?p=215#comment-1991</guid>
		<description>Matt I will upload my problem into a website for you to see. I have another question.  What will be the cleanest way to create the view representation of a form.  Many sites just use a table.

Description      Value
Description      Value
without using tables.</description>
		<content:encoded><![CDATA[<p>Matt I will upload my problem into a website for you to see. I have another question.  What will be the cleanest way to create the view representation of a form.  Many sites just use a table.</p>
<p>Description      Value<br />
Description      Value<br />
without using tables.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://www.mattvarone.com/web-design/clean-accesible-form-foundation/#comment-1969</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Sun, 07 Mar 2010 19:28:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattvarone.com/?p=215#comment-1969</guid>
		<description>@jose if you are using the button element ( as in this example ) instead of an input with the type submit, then commenting the button css section should return your element to it&#039;s default style. Now, in both the online demo and the download I applied a quick reset to all elements &lt;em&gt; * { margin:0; padding: 0 } &lt;/em&gt;, This is probably causing you to see the button look &quot;flat&quot;. Try removing or commenting that part of the code  to see if it helps. Thanks for the comments!</description>
		<content:encoded><![CDATA[<p>@jose if you are using the button element ( as in this example ) instead of an input with the type submit, then commenting the button css section should return your element to it&#8217;s default style. Now, in both the online demo and the download I applied a quick reset to all elements <em> * { margin:0; padding: 0 } </em>, This is probably causing you to see the button look &#8220;flat&#8221;. Try removing or commenting that part of the code  to see if it helps. Thanks for the comments!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jose</title>
		<link>http://www.mattvarone.com/web-design/clean-accesible-form-foundation/#comment-1964</link>
		<dc:creator>jose</dc:creator>
		<pubDate>Sun, 07 Mar 2010 14:30:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattvarone.com/?p=215#comment-1964</guid>
		<description>Thank you. That works.  Now for a question.  Many form css templates change the way the submit button looks. BUT, what if I want the standard way? I commented all the button section on the css, but still the button looks flat(not the normal way). I think, correct me if I am wrong, that is taking the properties of other element because of lines like this
.cleanform input,

Can the css be made in such a way that the properties of the element in the form does not affect the look of the submit button?

Thank you</description>
		<content:encoded><![CDATA[<p>Thank you. That works.  Now for a question.  Many form css templates change the way the submit button looks. BUT, what if I want the standard way? I commented all the button section on the css, but still the button looks flat(not the normal way). I think, correct me if I am wrong, that is taking the properties of other element because of lines like this<br />
.cleanform input,</p>
<p>Can the css be made in such a way that the properties of the element in the form does not affect the look of the submit button?</p>
<p>Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://www.mattvarone.com/web-design/clean-accesible-form-foundation/#comment-1962</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Sun, 07 Mar 2010 12:49:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.mattvarone.com/?p=215#comment-1962</guid>
		<description>@Jose post updated, now radio buttons and checkboxes can be column aligned with the &lt;em&gt;.multiple&lt;/em&gt; class.</description>
		<content:encoded><![CDATA[<p>@Jose post updated, now radio buttons and checkboxes can be column aligned with the <em>.multiple</em> class.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
