<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>The Online Form Builder Blog &#187; usability</title>
	<atom:link href="http://formsmarts.com/weblog/tag/usability/feed" rel="self" type="application/rss+xml" />
	<link>http://formsmarts.com/weblog</link>
	<description>The Online Form Builder Blog</description>
	<lastBuildDate>Sat, 28 Jan 2012 05:14:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to Customize the Look of Your Forms with CSS</title>
		<link>http://formsmarts.com/weblog/form-builder/online-form-customize-style-css</link>
		<comments>http://formsmarts.com/weblog/form-builder/online-form-customize-style-css#comments</comments>
		<pubDate>Mon, 21 Nov 2011 20:16:00 +0000</pubDate>
		<dc:creator>FormSmarts</dc:creator>
				<category><![CDATA[form builder]]></category>
		<category><![CDATA[embed]]></category>
		<category><![CDATA[form design]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[widget]]></category>

		<guid isPermaLink="false">http://formsmarts.com/weblog/?p=361</guid>
		<description><![CDATA[
The online form builder allows you to easily change the layout and colors of your forms when these are embedded into your website. This article discusses how to further customize the look of your online forms by providing your own CSS stylesheet. You can create one (or more) CSS stylesheet for each form.

Disclaimer

The feature discussed [...]]]></description>
			<content:encoded><![CDATA[<p>
The online form builder allows you to easily change the <a href="/weblog/html-form/form-layout">layout</a> and <a href="/weblog/form-builder/form-color-settings">colors</a> of your forms when these are embedded into your website. This article discusses how to further customize the look of your online forms by providing your own CSS stylesheet. You can create one (or more) CSS stylesheet for each form.
</p>
<h3>Disclaimer</h3>
<p style="background-color:#eee;">
The feature discussed in this article is UNOFFICIAL. It is NOT PART OF ANY FORMSMARTS COMMERCIAL OFFERS and we do not provide direct support for it. Feel free to <a href="/weblog/form-builder/online-form-customize-style-css#comment">post questions</a> at the bottom of this page. Changing the layout of a form may prevent it to display consistently across browsers.
</p>
<h2>Verify Your Site &#038; Upload a Logo</h2>
<p>To be able to use your own CSS stylesheet, your first need to <a href="/form-owner-verification">verify your site</a> and <a href="/customize-form-logo">upload a site logo</a>. Uploading a logo creates a website profile on FormSmarts and will allow you to provide your own CSS stylesheet. The logo will be shown on the standalone version of your forms and also on PayPal if you&#8217;re using <a href="/weblog/payment-form/advanced-paypal-integration-get-form-after-payment">Advanced Payment Integration</a>.</p>
<h2>Create a CSS Stylesheet</h2>
<p>The CSS code in your stylesheet will be loaded after the default FormSmarts CSS, so any instructions specified in it will override the default. We give a few examples of customizations in the Example section below. More will follow.</p>
<h2>Update the Embed Code on Your Site</h2>
<p>In the HTML snippet given in the <em>Form Publishing Info</em> screen of the form creator, change the query string portion of the URL from <span style="font-family:monospace;color:green;">mode=embed&amp;lay=1</span> to <span style="font-family:monospace;color:green;">mode=embed&amp;lay=1<span style="font-weight:bold;">&amp;style=css/form.css</span></span>, where <em>css/form.css</em> is the path to the CSS file <em>relative</em> to the root of your website. For example, if your website&#8217;s URL is <em>http://www.example.com</em>, the CSS file should be at <em>http://www.example.com/css/form.css</em>.</p>
<h2>CSS Styling Examples</h2>
<h3>Changing the Font and Color of Headings</h3>
<pre  style="color:green;">
h2{
font-family:serif;
font-size:14px;
color:orange;
}
</pre>
<h3>Changing the Layout of a Form to Multiple Columns</h3>
<p>
Logical sections defined by <a href="/weblog/form-builder/how-to-add-heading-text-block-to-web-form">headings</a> can be made into separate columns using the following CSS code and changing the <em>iframe</em> width accordingly.
</p>
<pre  style="color:green;">
#section_1{
width:350px;
float:left;
}
#section_2{
width:350px;
float:right;
}
</pre>
<p>
<img src="http://static.formsmarts.com/img/online-form-multiple-columns.png" alt="Online form with multiple columns" width="311" height="336"></p>
]]></content:encoded>
			<wfw:commentRss>http://formsmarts.com/weblog/form-builder/online-form-customize-style-css/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Introducing Form Layouts</title>
		<link>http://formsmarts.com/weblog/html-form/form-layout</link>
		<comments>http://formsmarts.com/weblog/html-form/form-layout#comments</comments>
		<pubDate>Thu, 14 Aug 2008 11:38:42 +0000</pubDate>
		<dc:creator>FormSmarts</dc:creator>
				<category><![CDATA[HTML form]]></category>
		<category><![CDATA[form design]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[widget]]></category>

		<guid isPermaLink="false">http://formsmarts.com/weblog/?p=48</guid>
		<description><![CDATA[
We&#8217;re pleased to now support two form layouts.




Question (a.k.a. field name) and input field aligned horizontally (default):



Question and input field aligned vertically:




Which Layout Should You Use?
Most people find web forms designed with the first layout clearer and easier to read. That&#8217;s why we use it by default whenever you create a form. 

The best layout [...]]]></description>
			<content:encoded><![CDATA[<p>
We&#8217;re pleased to now support two form layouts.
</p>
<p><table>
<tr>
<td>
Question (a.k.a. field name) and input field aligned horizontally (default):<br />
<img src="http://static.formsmarts.com/img/form-layout-1.gif" alt="Form layout: question and input field aligned">
</td>
<td>
Question and input field aligned vertically:<br />
<img src="http://static.formsmarts.com/img/form-layout-2.gif" alt="Form layout: question above input field">
</td>
</tr>
</table>
<h3>Which Layout Should You Use?</h3>
<p>Most people find web forms designed with the first layout clearer and easier to read. That&#8217;s why we use it by default whenever you create a form. </p>
<p>
The best layout to use depends on the length of the questions asked on the form.</p>
<ul>
<li>When a form is made of short questions like <em>name</em> or <em>email address</em>, prefer the first layout. This is what you should use, for example, for contact forms.</li>
<li>When the form contains longer questions like <em>Why do you want to work for us?</em>, you should rather use the second layout. It turns out that you should use the second layout for most complex forms like web surveys and job application forms.</li>
</ul>
<h3>How to Change the Layout of a Form</h3>
<p>You can change the layout of a form in the form details page. Note that if you&#8217;re using a form widget embedded into your site, <em><strong>you must update the HTML code</strong></em> on your site whenever you switch layout.</p>
<p>This is simply because the layout affects the size of the form. Forms accessed by their FormSmarts.com URL don&#8217;t have this restriction.</p>
<h3>Any Feedback About Form Layouts?</h3>
<p>We <a href="http://formsmarts.com/weblog/html-form/form-layout#respond">welcome your feedback</a> about this feature.</p>
]]></content:encoded>
			<wfw:commentRss>http://formsmarts.com/weblog/html-form/form-layout/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Form Color Settings</title>
		<link>http://formsmarts.com/weblog/form-builder/form-color-settings</link>
		<comments>http://formsmarts.com/weblog/form-builder/form-color-settings#comments</comments>
		<pubDate>Mon, 07 Jul 2008 00:05:11 +0000</pubDate>
		<dc:creator>FormSmarts</dc:creator>
				<category><![CDATA[form builder]]></category>
		<category><![CDATA[embed]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[web forms]]></category>
		<category><![CDATA[widget]]></category>

		<guid isPermaLink="false">http://formsmarts.com/weblog/?p=40</guid>
		<description><![CDATA[
Like many FormSmarts users, you may sometimes want to customize the style of your web forms. This may be because you want the forms to match the rest of your website, or because you want a form to stand out on a web page.


The form builder now allows you to change the text and background [...]]]></description>
			<content:encoded><![CDATA[<p>
Like many FormSmarts users, you may sometimes want to customize the style of your web forms. This may be because you want the forms to match the rest of your website, or because you want a form to stand out on a web page.
</p>
<p>
The form builder now allows you to change the text and background color of your forms. Visit the <em>Form Details</em> window in  the <em>Forms</em> tab to set color preferences for a particular form.
</p>
<p><img src="http://static.formsmarts.com/img/form-builder-form-color-selection.gif" alt="Web Form Color Selection" class="cont"></p>
<p>
Things to note:</p>
<ul>
<li>color settings only affect <em>embedded forms</em>, not forms access by their FormSmarts URL</li>
<li>because your color settings are stored in our servers, you can change settings and see the result immediately. You <em>don&#8217;t need</em> to update the form code on your website. </li>
</ul>
<h3>How to Change Form Colors</h3>
<ol>
<li>By default, form text is <em>black</em>, and form background is <em>transparent</em>. This should fit the needs of most users, and if you&#8217;re happy with this, you don&#8217;t need to do anything.</li>
<li>If you do want to change a color, the easiest way is to  choose one of the popular colors we&#8217;ve preselected. Just click on the color you want. </li>
<li>If you prefer to use your own colors, you may type any valid 6-digit HTML color code directly. For example, <em>808080</em> is a shade of gray. </li>
</ol>
<h3>Usability Note</h3>
<p>It&#8217;s important to preserve the accessibility of your forms to visually impaired visitors, and their usability under poor reading conditions (e.g. bright sunshine). Always keep a high color contrast.</p>
]]></content:encoded>
			<wfw:commentRss>http://formsmarts.com/weblog/form-builder/form-color-settings/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Why Does Submitting a Form Require Two Steps?</title>
		<link>http://formsmarts.com/weblog/form-handler/why-does-submitting-a-form-require-two-steps</link>
		<comments>http://formsmarts.com/weblog/form-handler/why-does-submitting-a-form-require-two-steps#comments</comments>
		<pubDate>Wed, 23 Apr 2008 13:59:43 +0000</pubDate>
		<dc:creator>FormSmarts</dc:creator>
				<category><![CDATA[form handler]]></category>
		<category><![CDATA[captcha]]></category>
		<category><![CDATA[form spam]]></category>
		<category><![CDATA[form submission]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://formsmarts.com/weblog2/?p=28</guid>
		<description><![CDATA[Many form processors let visitors submit a form in only one step: users fill in the form, and are done after pressing the submit button. With FormSmarts, there is an extra confirmation step, during which users are invited to review and confirm the information submitted. There are two strong reasons why we added the confirmation [...]]]></description>
			<content:encoded><![CDATA[<p>Many form processors let visitors submit a form in only one step: users fill in the form, and are done after pressing the submit button. With FormSmarts, there is an extra confirmation step, during which users are invited to review and confirm the information submitted. There are two strong reasons why we added the confirmation step.</p>
<p>The first reason is quality. FormSmarts is typically used for transaction where the information submitted is important. Important because the information collected is intended to be read by humans, rather than machines. Important because this information is often intended to be acted upon.</p>
<p><em><br />
By allowing users to review and modify their submission, we increase the accuracy of the information you get in the end.</em></p>
<p>Form users understand that, and it increases their confidence that you value the information they are sending you. Most of times, confirmation will only add a few seconds to the whole transaction.</p>
<p>The second reason is security and usability. Many form submissions are automated, or even manual spamming attempts, known as form spam or comment spam.</p>
<p>When a user presses the submit button, a lot more happens on the server than you may suspect. If we spot a likely spamming attempt, we&#8217;ll ask the user to complete one or more tests (e.g. CAPTCHA test) on the confirmation page. But in the same time, the bulk of users will never be asked to waste time on a CAPTCHA test.</p>
]]></content:encoded>
			<wfw:commentRss>http://formsmarts.com/weblog/form-handler/why-does-submitting-a-form-require-two-steps/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Are Forms Protected by a CAPTCHA?</title>
		<link>http://formsmarts.com/weblog/form-builder/are-forms-protected-by-a-captcha</link>
		<comments>http://formsmarts.com/weblog/form-builder/are-forms-protected-by-a-captcha#comments</comments>
		<pubDate>Sat, 12 Jan 2008 00:32:54 +0000</pubDate>
		<dc:creator>FormSmarts</dc:creator>
				<category><![CDATA[form builder]]></category>
		<category><![CDATA[form spam]]></category>
		<category><![CDATA[captcha]]></category>
		<category><![CDATA[form submission]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[web forms]]></category>

		<guid isPermaLink="false">http://formsmarts.com/weblog2/?p=17</guid>
		<description><![CDATA[ We often get questions asking whether FormSmarts web forms are protected against automated submissions by a CAPTCHA. A CAPTCHA is a challenge-response test used to determine whether the user is human.

Yes, we do use CAPTCHA tests, but not everytime a form is submitted. Instead, the form handler decides each time whether or not to [...]]]></description>
			<content:encoded><![CDATA[<p><img class="cont" title="Challenge image" alt="CAPTCHA challenge image" src="http://static.formsmarts.com/img/captcha-challenge.gif" width="141" height="71"> We often get questions asking whether FormSmarts web forms are protected against automated submissions by a <acronym title="Completely Automated Public Turing test to tell Computers and Humans Apart">CAPTCHA</acronym>. A CAPTCHA is a challenge-response test used to determine whether the user is human.</p>
<p>
Yes, we do use CAPTCHA tests, but not everytime a form is submitted. Instead, the form handler decides each time whether or not to require a CAPTCHA test (and other verifications), based on unobtrusive analysis by our <a href="http://formsmarts.com/form-spam" title="FormSmarts Form Spam Blocker">form spam blocker</a> of the information submitted.
</p>
<p>
This saves time to every one, and reduces form abandonment.
</p>
<p>
Asking the user to complete a CAPTCHA test for every form submission affects <a title="Generate Accessible Web Forms" href="http://formsmarts.com/accessible-forms">form usability and accessibility</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://formsmarts.com/weblog/form-builder/are-forms-protected-by-a-captcha/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Choosing a Good Web Form Title</title>
		<link>http://formsmarts.com/weblog/form-builder/choosing-a-good-web-form-title</link>
		<comments>http://formsmarts.com/weblog/form-builder/choosing-a-good-web-form-title#comments</comments>
		<pubDate>Sat, 15 Dec 2007 18:55:09 +0000</pubDate>
		<dc:creator>FormSmarts</dc:creator>
				<category><![CDATA[form builder]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[web forms]]></category>

		<guid isPermaLink="false">http://formsmarts.com/weblog2/?p=7</guid>
		<description><![CDATA[Most visitors will notice that they are submitting a form not from your website, but from FormSmarts.com. For users to be confident they are sending information to the right person, include your name or website name in the form title.
For example, &#8220;Contact Edgar Poe&#8221; is a more informative and useful title than &#8220;Contact Form&#8221;.
]]></description>
			<content:encoded><![CDATA[<p>Most visitors will notice that they are submitting a form not from your website, but from FormSmarts.com. For users to be confident they are sending information to the right person, include your name or website name in the form title.</p>
<p>For example, &ldquo;Contact Edgar Poe&rdquo; is a more informative and useful title than &ldquo;Contact Form&rdquo;.</p>
]]></content:encoded>
			<wfw:commentRss>http://formsmarts.com/weblog/form-builder/choosing-a-good-web-form-title/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why You Should Care About Web Form Usability</title>
		<link>http://formsmarts.com/weblog/html-form/should-you-care-about-web-form-accessibility</link>
		<comments>http://formsmarts.com/weblog/html-form/should-you-care-about-web-form-accessibility#comments</comments>
		<pubDate>Tue, 11 Dec 2007 17:22:51 +0000</pubDate>
		<dc:creator>FormSmarts</dc:creator>
				<category><![CDATA[HTML form]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[form builder]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[web forms]]></category>

		<guid isPermaLink="false">http://formsmarts.com/weblog2/?p=10</guid>
		<description><![CDATA[Many organizations don&#8217;t publish any email addresses on their website because of email spam. On those sites, a contact form is the only way for a visitor to reach the site owner. This should imply that website designers take a lot of care to ensure that web forms are usable by anyone, as email is.

Owing [...]]]></description>
			<content:encoded><![CDATA[<p>Many organizations don&#8217;t publish any email addresses on their website because of email spam. On those sites, a <a class="motto" href="/contact-form" title="Get Free Web Contact Forms">contact form</a> is the only way for a visitor to reach the site owner. This should imply that website designers take a lot of care to ensure that web forms are usable by anyone, as email is.</p>
<p>
Owing to <a class="motto" title="Comment Spam" href="/weblog/tag/comment-spam" rel="tag">comment spam</a> and more generally <a class="motto" href="/form-spam" title="Prevent Form Abuse">web form abuse</a>, many sites now protect forms with CAPTCHAs or other devices meant to prevent automated software from successfully submitting forms.</p>
<p>
The accessibility issues associated with CAPTCHAs for visually impaired people are well known, so I&#8217;m not going to discuss this further.  I&#8217;m going to talk here about people fortunate enough to have normal sight and hearing, but who may also have a hard time using web forms.
</p>
<h3>Visual CAPTCHAs</h3>
<p> <a class="low" name="captcha"></a></p>
<p>Many CAPTCHAs systems are difficult to read because they were designed to defeat automated attempts to read the image using <acronym title="Optical Character Recognition">OCR</acronym>. As the designer of a CAPTCHA system, I&#8217;ve been trained more than the average web user to reading them. Still, I&#8217;m surprised by how often I miss the correct code on the first try. A high level of image obfuscation may be needed for very large websites like Google or Yahoo, for which it is realistic to believe some people would be ready to invest a lot of effort to break the system, given the potential payoff. But it&#8217;s very unlikely someone will try to break the CAPTCHA of the average website. So those should at least be easy-to-read and short, if CAPTCHA there has to be.</p>
<p>Not every web user downloads images. More and more people browse the web via cellphones, on which web usage is charged per megabyte. Users are then inclined not to load images to reduce costs. This is even the default setting on some low-end cellphones. Those users won&#8217;t see the CAPTCHA.</p>
<h3>Audio CAPTCHAs</h3>
<p> <a class="low" name="audiocaptcha"></a></p>
<p>Audio CAPTCHAs are commonly accepted as a good complement to visual CAPTCHAs for the visually impaired. Besides the technical reasons for not being able to listen to an audio file on a computer (e.g. no sound support, no loudspeakers or earphones fitted), there are also social reasons. First, there are social environments where it may be rude or prohibited. For example in public libraries and open space offices. Second, the web is global and non-native English speakers may not be able to understand what is said in the audio CAPTCHA.</p>
<h3>JavaScript</h3>
<p> <a class="low" name="js"></a></p>
<p>Some websites require JavaScript to be enabled for submitting a form. It may be because JavaScript is needed to (re)load the CAPTCHA, or because it is used for <a class="motto" href="/form-validation">client-side validation</a> and users not supporting it are redirected to an error page.</p>
<p>If very few people still use browsers without JavaScript support on desktop computers,  that is not true for browsers on mobile platforms. More to the point, some people actively disable JavaScript. They do so for privacy reasons, or to get rid of ads. We&#8217;ve also seen corporate-wide policies to disable JavaScript for security reasons, i.e. to prevent cross-site scripting attacks and sneaky JavaScript redirects. There are surely compelling forces pushing towards JavaScript acceptance to take advantage of rich and interactive <acronym title="Asynchronous JavaScript and XML - AJAX is a web development technique used for creating interactive web applications.">AJAX</acronym> applications, but those users nonetheless exist and shouldn&#8217;t be ignored.</p>
<h3>Flash Forms</h3>
<p> <a class="low" name="flash"></a></p>
<p>Some web publishers see using Flash forms as a viable option, presumably in an attempt to reduce <a rel="tag" class="motto" href="/weblog/tag/form-spam">form spam</a>. Adobe <a href="http://www.adobe.com/products/player_census/flashplayer/" rel="nofollow">claims</a> Flash reaches 99% of &ldquo;Internet viewers&rdquo; (Sept. 2007). What they mean is that 99% of desktop computers in mature markets have the oldest version of Flash (Flash 6) installed. The figure goes down to 93.3% for Flash 9, and only includes six countries. It goes down to 89.4% for users in emerging markets (97.7% for Flash 6). The figure would be more meaningful prorated to the share of web users in each market segment. Still, I find this figure very high given that for people who are not using video-sharing sites, Flash is mainly a technology for displaying obtrusive ads. I feel that Flash ubiquity could drop a lot if browsers had an option to disable it, as they do for Java or JavaScript.</p>
]]></content:encoded>
			<wfw:commentRss>http://formsmarts.com/weblog/html-form/should-you-care-about-web-form-accessibility/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Adding Form Filling Instructions to Your Web Forms</title>
		<link>http://formsmarts.com/weblog/form-builder/adding-form-filling-instructions</link>
		<comments>http://formsmarts.com/weblog/form-builder/adding-form-filling-instructions#comments</comments>
		<pubDate>Thu, 06 Dec 2007 11:56:29 +0000</pubDate>
		<dc:creator>FormSmarts</dc:creator>
				<category><![CDATA[form builder]]></category>
		<category><![CDATA[form design]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[privacy]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[web forms]]></category>

		<guid isPermaLink="false">http://formsmarts.com/weblog2/?p=6</guid>
		<description><![CDATA[You can now specify Form Filling Instructions for your web forms. Although this field is optional, we encourage you to make use of it. It will help your visitors complete the form more efficiently, and also help you build trust with them. Here are some information you may want to place in the Form Filling [...]]]></description>
			<content:encoded><![CDATA[<p>You can now specify Form Filling Instructions for your web forms. Although this field is optional, we encourage you to make use of it. It will help your visitors complete the form more efficiently, and also help you build trust with them. Here are some information you may want to place in the Form Filling Instructions.</p>
<p>Remind users of the purpose of the form to avoid people submitting the wrong form.</p>
<p>Precise the intended content of particular fields. This will help your visitors complete the form accurately and efficiently.</p>
<p>State for which purposes you will use the data submitted, and whether the data will be shared with a third party. This is particularly important if you collect email addresses and other personally identifying information. People are often concerned about their privacy when submitting forms, so having a clear privacy policy will help build trust with your users.</p>
<p>
Include the name of your website, so visitors can be confident they are contacting the right person or organization.
</p>
<p>Whenever relevant, give an estimated response time, e.g. &ldquo;we normally reply within 2 working days&rdquo;. </p>
]]></content:encoded>
			<wfw:commentRss>http://formsmarts.com/weblog/form-builder/adding-form-filling-instructions/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

