<?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/"
	>

<channel>
	<title>Design with Usability</title>
	<atom:link href="http://blog.designwithusability.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.designwithusability.com</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Sat, 11 Apr 2009 17:14:11 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to display error message on forms.</title>
		<link>http://blog.designwithusability.com/2009/04/how-to-display-error-message-on-forms/</link>
		<comments>http://blog.designwithusability.com/2009/04/how-to-display-error-message-on-forms/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 20:07:41 +0000</pubDate>
		<dc:creator>sumana</dc:creator>
		
		<category><![CDATA[Designing effective forms]]></category>

		<category><![CDATA[Website Usability Issues]]></category>

		<category><![CDATA[error message display]]></category>

		<category><![CDATA[Form design]]></category>

		<category><![CDATA[form error message]]></category>

		<guid isPermaLink="false">http://blog.designwithusability.com/?p=166</guid>
		<description><![CDATA[How to display error message properly so that it makes clear to the user what needs to be corrected. Simple techniques to design forms to display error message so that it is clear, precise and not intrusive.]]></description>
			<content:encoded><![CDATA[<p>During a recent usability session, I came across to a form validation that displays the error message with a long sentence inside<span id="more-166"></span> the form area with no indication to which field it was referring to. As a result, the user thought he made a mistake on the password field and retyped and resubmitted. When the same error message re-appeared, this time he read the long 2 lines of error messages and finally typed the user name the way it was asked.</p>
<div id="attachment_170" class="wp-caption alignnone" style="width: 385px"><a href="http://blog.designwithusability.com/wp-content/uploads/2009/04/error-msg-display-wrong1.png"><img class="size-full wp-image-170" title="Error message display: confusing to user" src="http://blog.designwithusability.com/wp-content/uploads/2009/04/error-msg-display-wrong1.png" alt="Error message display: confusing to user" width="375" height="169" /></a><p class="wp-caption-text">Error message display: confusing to user</p></div>
<p>So the question is how can you display error messages so that user can understand easyly what mistakes they have made? Here are few examples to do that:</p>
<ol>
<li>Try to make the error messages short, precise and clear. Remember, the more you write, there is a higher chance of ignoring the message!</li>
<li>If the form is short (e.g. 4-5 fields), you can provide the error message(s) at the top of the form. If the form is very long, try to provide the error message just before the field where they have made mistake, aligned with the field.</li>
<li>Use a different font color/size to specify that this is an error message!</li>
<li>Always try to give some graphical treatement to the field on which they have made the mistake. For example, changing the background of the field or making the border highlighted should do the job.</li>
</ol>
<p>Here is an example display the error message properly on the previous form:</p>
<div id="attachment_176" class="wp-caption aligncenter" style="width: 284px"><a href="http://blog.designwithusability.com/wp-content/uploads/2009/04/error-msg-display-right.png"><img class="size-full wp-image-176" title="Proper way of displaying error message on a form" src="http://blog.designwithusability.com/wp-content/uploads/2009/04/error-msg-display-right.png" alt="Proper way of displaying error message on a form" width="274" height="234" /></a><p class="wp-caption-text">Proper way of displaying error message on a form</p></div>
<p>Here is the html file to <a href="http://blog.designwithusability.com/wp-content/uploads/2009/04/demo-error-message-display-correct.html" target="_blank">download</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.designwithusability.com/2009/04/how-to-display-error-message-on-forms/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Adding dynamically generated graphs and charts</title>
		<link>http://blog.designwithusability.com/2009/03/adding-dynamically-generated-graphs-and-charts/</link>
		<comments>http://blog.designwithusability.com/2009/03/adding-dynamically-generated-graphs-and-charts/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 22:31:18 +0000</pubDate>
		<dc:creator>tasin</dc:creator>
		
		<category><![CDATA[JavaScript and DHTML]]></category>

		<category><![CDATA[Web Image Techniques]]></category>

		<category><![CDATA[Website Usability Issues]]></category>

		<category><![CDATA[dynamic chart]]></category>

		<category><![CDATA[dynamic graph]]></category>

		<category><![CDATA[Google chart API]]></category>

		<guid isPermaLink="false">http://blog.designwithusability.com/?p=160</guid>
		<description><![CDATA[Using Google Chart API, you can create charts, graphs, plots within 2 minutes. You don't need to install anything, don't even need any JavaScript code either. Just add an image tag with necessary parameters and voila! Your chart is ready.]]></description>
			<content:encoded><![CDATA[<p>If you are looking to add a graph or a pie chart on your web based application that will be dynamically generated<span id="more-160"></span>, you can use several online open source JavaScript graphing tool to do this. However, I have recently found another option to add graphs and charts that would be generated with dynamic data and will be displayed as a .png image on your site.</p>
<p>For example, you want to show a pie chart for sex distribution of male 43 and female 38. With one line of code you can create and display the following chart:</p>
<p><img src="http://chart.apis.google.com/chart?chs=450x200&amp;chd=t:43,38&amp;cht=p3&amp;chl=Male|Female&amp;chco=CC33FF" alt="Sex distribution" /></p>
<p>Thanks to Google for it&#8217;s amazing chart API to create graphs and charts in less than 2 minutes. This chart was created by using following code:</p>
<p>&lt;img src=&#8221;http://chart.apis.google.com/chart?chs=450&#215;200&amp;chd=t:43,38&amp;cht=p3&amp;chl=Male|Female&#8221; alt=&#8221;Sex distribution&#8221; /&gt;</p>
<p>Here, the source of the image is http://chart.apis.google.com/chart and parameters it is taking in this case are:</p>
<ul>
<li> size (e.g. chs=450&#215;200 for size of the image),</li>
<li>data that you want to show(e.g. chd=t:43,38 for 43 and 38),</li>
<li>chart type (e.g. cht=p3 for 3 dimensional pie chart)</li>
<li>chart labels (e.g. chl=Male|Female)</li>
</ul>
<p>The full documentaion of different types of graphs, charts, scatter plots can be found at <a title="Google Chart API" href="http://code.google.com/apis/chart/" target="_blank">Google chart API</a> website.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.designwithusability.com/2009/03/adding-dynamically-generated-graphs-and-charts/feed/</wfw:commentRss>
		</item>
		<item>
		<title>HTML Layer display problem on IE</title>
		<link>http://blog.designwithusability.com/2009/03/html-layer-display-problem-on-ie/</link>
		<comments>http://blog.designwithusability.com/2009/03/html-layer-display-problem-on-ie/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 20:58:03 +0000</pubDate>
		<dc:creator>tasin</dc:creator>
		
		<category><![CDATA[Common Browser Issues]]></category>

		<category><![CDATA[Designing effective forms]]></category>

		<category><![CDATA[Web Design Issues]]></category>

		<category><![CDATA[Web Image Techniques]]></category>

		<category><![CDATA[layer problem in IE]]></category>

		<category><![CDATA[layer tag]]></category>

		<category><![CDATA[Layer vs Div tag]]></category>

		<guid isPermaLink="false">http://blog.designwithusability.com/?p=155</guid>
		<description><![CDATA[Problems with using layer tag on IE. Use div tag rather than layer to make sure all your users can see your site properly.]]></description>
			<content:encoded><![CDATA[<p>Recently, I was working on an online testing tool where I needed to generate some content dynamically to display on top of the page<span id="more-155"></span> making the background blur. For some reason (I don&#8217;t know why), I used &#8216;layer&#8217; rather than &#8216;div&#8217;. I use Mozilla Firefox browser. So when I tested the tool on Mozilla Firefox, it worked fine. However, when I sent the link to my colleague, it wasn&#8217;t working properly. It turns out that he was using IE to view the tool and unfortunately, IE has some issues rendering &#8216;layer&#8217; tag.</p>
<p>I Googled this issue but couldn&#8217;t find any solution to make IE work with layer. Finally, I changed the &#8216;layer&#8217; to &#8216;div&#8217; and it started working fine on both browsers.</p>
<p>This is quite common to overlay or use Ajax to dynamically generate content. If you want to make sure that all users can access your tool/website, use div tag rather than layer. Layer tag is getting deprecated and some browsers stopped supporting layer.</p>
<blockquote><p>What if all browsers rendered everything the same way&#8230;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.designwithusability.com/2009/03/html-layer-display-problem-on-ie/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Highlight current link with JavaScript and CSS</title>
		<link>http://blog.designwithusability.com/2009/03/highlight-current-link-with-javascript-and-css/</link>
		<comments>http://blog.designwithusability.com/2009/03/highlight-current-link-with-javascript-and-css/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 15:44:57 +0000</pubDate>
		<dc:creator>sumana</dc:creator>
		
		<category><![CDATA[JavaScript and DHTML]]></category>

		<category><![CDATA[Add new tag]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[hightlight current link]]></category>

		<category><![CDATA[JavaScript]]></category>

		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://blog.designwithusability.com/?p=144</guid>
		<description><![CDATA[It is always a time consuming issue to highlight current link page, specially if you are thinking of going to each page and set the style for the current link. Which is not a bad idea but the problem is, most of the times you would like to put the main navigation of your web [...]]]></description>
			<content:encoded><![CDATA[<p>It is always a time consuming issue to highlight current link page, specially if you are thinking of going to each page and set the style for the current link. Which is not a bad idea but the problem is<span id="more-144"></span>, most of the times you would like to put the main navigation of your web pages inside a template. If your navigation is inside a template but you want your current link to be highlighted with a different style you can use some Javascript to do that. There are actually several ways to do that.</p>
<p>You can write a Javascript function to extract the name of you current page, then put that name as an &#8216;id&#8217; for the body tag of you current page as the page loads.</p>
<p><code>function returnDocument()<br />
{<br />
var file_name = document.location.href;<br />
return file_name.substring(file_name.lastIndexOf("/")+1, file_name.lastIndexOf("."));</code></p>
<p>}<br />
window.onload= function()<br />
{<br />
document.getElementsByTagName(&#8217;body&#8217;)[0].id=returnDocument();</p>
<p>}</p>
<p>all the links in your page will need to have an &#8216;id&#8217; as well. Then you can just write a css style like this,</p>
<p><code>body#page1 a#p1,body#page2 a#p2,body#page3 a#p3......<br />
{<br />
specify your style for current link here<br />
}</code></p>
<p>View the source code of <a href="http://blog.designwithusability.com/samplecode/page1.html" target="_blank">page1.html</a> to see how it is working.</p>
<p>This is a simple way to highlight current link with CSS and JavaScript when you are working keeping the navigation inside a template.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.designwithusability.com/2009/03/highlight-current-link-with-javascript-and-css/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to design effective, usable and accessible forms</title>
		<link>http://blog.designwithusability.com/2009/03/how-to-design-effective-usable-and-accessible-forms/</link>
		<comments>http://blog.designwithusability.com/2009/03/how-to-design-effective-usable-and-accessible-forms/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 21:39:16 +0000</pubDate>
		<dc:creator>tasin</dc:creator>
		
		<category><![CDATA[Designing effective forms]]></category>

		<category><![CDATA[Website Usability Issues]]></category>

		<category><![CDATA[Form design]]></category>

		<category><![CDATA[usable form design]]></category>

		<guid isPermaLink="false">http://blog.designwithusability.com/?p=116</guid>
		<description><![CDATA[To design effective, usable and accessible forms, you need to consider three simple steps.]]></description>
			<content:encoded><![CDATA[<p>On a library website, consider the following form for searching a book written by Richard Joiner<span id="more-116"></span>:</p>
<div id="attachment_119" class="wp-caption alignnone" style="width: 419px"><a href="http://blog.designwithusability.com/wp-content/uploads/2009/03/form_author2.png"><img class="size-full wp-image-119" title="Image Example of search form" src="http://blog.designwithusability.com/wp-content/uploads/2009/03/form_author2.png" alt="Image Example of search form" width="409" height="101" /></a><p class="wp-caption-text">Image Example of search form</p></div>
<p>If you thought of writing Richard Joiner on the text box, the search might not work. If you notice, the example shown right under &#8220;Search book by author name:&#8221;, the instruction says the user have to type &#8220;Joiner, R&#8221; to retrieve the books written by all authors named R. Joiner. Don&#8217;t worry, it&#8217;s not only you who made this mistake. On a survey of 20 people on a classroom, only 2 read the instruction!</p>
<p>So, how you can design effective,usable and accessible forms? Here are 3 simple steps you need to keep in mind if you want to design an effective form:</p>
<ol>
<li>If the user needs to read any instruction in order to fill an input box, always give the label on top of the input box. This will help users read the instruction before filling the form.</li>
<li>If the user needs to think hard before they give an answer (e.g. date of birth), research shows, in this case, giving labels on the left with right alignment is more successful than on top. However, you might ask about the design issues. One solution to this could be separating the different types of labels/questions into different sections.</li>
<li>Always use &#8216;Label&#8217; tag (e.g. &#8220;&lt;label for=&#8217;name&#8217;&gt;Name&lt;/label&gt;&#8221;) to make sure that the form is accessible and usable for screen readers.</li>
</ol>
<p>Follow these three steps and you can design effective forms for your users. Try searching a book by William Shakespeare using the following form. Can you see the result?</p>
<div id="attachment_121" class="wp-caption alignnone" style="width: 230px"><a href="http://blog.designwithusability.com/wp-content/uploads/2009/03/form_modified.png"><img class="size-full wp-image-121" title="Effective form design" src="http://blog.designwithusability.com/wp-content/uploads/2009/03/form_modified.png" alt="Revised form" width="220" height="104" /></a><p class="wp-caption-text">Revised form</p></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.designwithusability.com/2009/03/how-to-design-effective-usable-and-accessible-forms/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Browser detection with javascript</title>
		<link>http://blog.designwithusability.com/2009/03/browser-detection-with-javascript/</link>
		<comments>http://blog.designwithusability.com/2009/03/browser-detection-with-javascript/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 23:30:38 +0000</pubDate>
		<dc:creator>tasin</dc:creator>
		
		<category><![CDATA[JavaScript and DHTML]]></category>

		<category><![CDATA[Browser detection]]></category>

		<category><![CDATA[JavaScript]]></category>

		<category><![CDATA[sniffers and redirections]]></category>

		<guid isPermaLink="false">http://blog.designwithusability.com/?p=87</guid>
		<description><![CDATA[Web designers commonly target specific browsers that can support certain design feature, then write code to take advantage of these browsers&#8217; added functionality. Therefore, if you determine which browser is visiting your page, you can use JavaScript to design certain elements for the page. Similarly, by determining which plug-ins a browser supports, you can include [...]]]></description>
			<content:encoded><![CDATA[<p>Web designers commonly target specific browsers that can support certain design feature, then write code to take advantage of these browsers&#8217; added functionality. Therefore, if you determine which browser is visiting your page<span id="more-87"></span>, you can use JavaScript to design certain elements for the page. Similarly, by determining which plug-ins a browser supports, you can include content that the plug-in supports.</p>
<p>Browses that do not support JavaScript can be offered alternative XHTML pages that do not rely on the JavaScript code. However, it is unlikely that current users that current users have browsers that do not support JavaScript.</p>
<p>The <span style="color: #006699;"><strong>navigator object</strong></span> is part of the JavaScript object model. It allows access to information specific to the browser. Within the navigator object are several properties that can be tested.</p>
<table style="height: 98px;" border="0" cellspacing="1" width="410" bgcolor="#cccccc">
<tbody>
<tr bgcolor="#ffffff">
<td width="150"><strong><span style="color: #006699;">Property/Method</span></strong></td>
<td><strong><span style="color: #006699;">Description</span></strong></td>
</tr>
<tr bgcolor="#ffffff">
<td>appCodeName</td>
<td>Code name of browser</td>
</tr>
<tr bgcolor="#ffffff">
<td>appName</td>
<td>Official browser name</td>
</tr>
<tr bgcolor="#ffffff">
<td>appVersion</td>
<td>Version of browser</td>
</tr>
<tr bgcolor="#ffffff">
<td>plugins</td>
<td>Plug-in installed in browser</td>
</tr>
<tr bgcolor="#ffffff">
<td>userAgent</td>
<td>User agent header</td>
</tr>
</tbody>
</table>
<p><script language="JavaScript" type="text/javascript">
<!--
function testbrowser()
{
	document.details.Name.value=navigator.appName;
	document.details.Version.value=navigator.appVersion;
	document.details.Code.value=navigator.appCodeName;
	document.details.Agent.value=navigator.userAgent;
}
//-->	
</script><br />
</head><br />
<body></p>
<form name="details" id="details" action="" method="get">
<table>
<tr>
<td>Browser Name:</td>
<td>
<input name="Name" type="text" size="50"/></td>
</tr>
<tr>
<td>Browser Version:</td>
<td>
<input name="Version" type="text" size="50" /></td>
</tr>
<tr>
<td>Browser Code Name:</td>
<td>
<input name="Code" type="text" size="50"/></td>
</tr>
<tr>
<td>User Agent:</td>
<td>
<input name="Agent" type="text" size="50"/></td>
</tr>
<tr>
<td>
<input type="button" value="Test Browser" onclick="testbrowser()" /></td>
</tr>
</table>
</form>
<p>Click on &#8216;Test Browser&#8217; to see how it works<br />
View source of <a href="http://blog.designwithusability.com/samplecode/browser_detection.html" target="_blank">browser_detection.html</a> to see the code.</p>
<p>***Notice that in the results the browser code name and user agent string displayed for the Internet Explorer browser includes the name Mozilla, which is commonly associated with the Netscape browser. This interesting turn is simply a legacy of the browser wars, when Microsoft copied Netscape&#8217;s user-agent string so that people using Internet Explorer browsers could not be locked out of sites that were designed for Netscape Browser.***</p>
<h1>Sniffers and redirections</h1>
<p>You can use JavaScript to create sniffer code that will direct the user based on the browser in use. Suppose that you want to add some browser specific functionality to your web pages. To ensure that all Web users can access your site, regardless of the browsers they use, you need the ability to test and identify your users&#8217; browsers. Using a sniffer and redirection will make your site more accessible to more users while allowing you the option to incorporate browsers-specific functionality if you choose.</p>
<p>Just add the following JavaScript function to perform redirection, remember to put the name of your specific file name in document.location.href=&#8221; &#8221; ,</p>
<p><code><br />
function checkBrowser()<br />
{<br />
var name=navigator.appName;<br />
if(name.indexOf('Netscape')!=-1)<br />
{<br />
document.location.href="webpage_for_mozilla.html";<br />
}<br />
else{<br />
if(name.indexOf('Microsoft')!=-1)<br />
{<br />
document.location.href="webpage_for_IE.html";<br />
}<br />
}<br />
}<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.designwithusability.com/2009/03/browser-detection-with-javascript/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Dithering</title>
		<link>http://blog.designwithusability.com/2009/03/dithering/</link>
		<comments>http://blog.designwithusability.com/2009/03/dithering/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 21:26:26 +0000</pubDate>
		<dc:creator>tasin</dc:creator>
		
		<category><![CDATA[Web Image Techniques]]></category>

		<category><![CDATA[dithering]]></category>

		<category><![CDATA[web image]]></category>

		<guid isPermaLink="false">http://blog.designwithusability.com/?p=81</guid>
		<description><![CDATA[Dithering is approximation or reconciliation of colors between an image palette and the system palette. The dithering process works by placing two colors from the system&#8217;s palette next to each other in order to trick the eye into seeing a third color that is desired but not part of the palette. Dithering makes it possible [...]]]></description>
			<content:encoded><![CDATA[<p>Dithering is approximation or reconciliation of colors between an image palette and the system palette. The dithering process works by placing two colors from the system&#8217;s palette next to each other in order to trick the eye into seeing<span id="more-81"></span> a third color that is desired but not part of the palette. Dithering makes it possible to display images that contain more colors than the system displaying them can support.</p>
<p>When a web browser encounters an image that contains colors not supported by the current monitor setting, the browser will automatically use dithering to try to approximate the correct colors in the image. Unfortunately, dithering can alter the image&#8217;s appearance in ways you might not want. In particular, a high-color image such as a photo can appear grainy when displayed on a computer that supports only 256 colors.</p>
<p>When you create web images using a graphics-editing program, you can specify whether the image should use dithering or whether the graphics application should change the image color to the closest Web-safe colors. If you use only colors in the safe 216-color palette that can be displayed on both Netscape and Internet Explorer browsers (i.e., web-safe colors), then your images will not dither when viewed on any browser. However, using only web safe colors severely limits the range of colors and types of images you can use on your pages, and is rarely an option for photographic images. The consensus among designer today is that you should use web-safe colors when ever possible.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.designwithusability.com/2009/03/dithering/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Testing a site in multiple browser</title>
		<link>http://blog.designwithusability.com/2009/03/testing-a-site-in-multiple-browser/</link>
		<comments>http://blog.designwithusability.com/2009/03/testing-a-site-in-multiple-browser/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 15:37:06 +0000</pubDate>
		<dc:creator>sumana</dc:creator>
		
		<category><![CDATA[Common Browser Issues]]></category>

		<category><![CDATA[browser compatibility testing]]></category>

		<category><![CDATA[consistent website appearance]]></category>

		<category><![CDATA[multiple browser]]></category>

		<category><![CDATA[Testing webpage in multiple browser]]></category>

		<guid isPermaLink="false">http://blog.designwithusability.com/?p=70</guid>
		<description><![CDATA[While designing a web site, it is very important to make sure to test your site in as many browser as possible. Even if you have variety of web browser installed on your computer for testing, it can be time consuming to open each page of your site in multiple browsers and compare them. To [...]]]></description>
			<content:encoded><![CDATA[<p>While designing a web site, it is very important to make sure to test your site in as many browser as possible. Even if you have variety of web browser installed on your computer for testing, <span id="more-70"></span>it can be time consuming to open each page of your site in multiple browsers and compare them. To make your testing process quicker and more thorough, you could use an online browser testing service to set your pages in multiple browsers simultaneously.</p>
<p>Just follow the the steps and you will sign up for a free trial of the BrowserCam.com service and use it to test Web sites in multiple browser.</p>
<ol>
<li><span style="color: #006699;"><strong>Browser:</strong></span> Open www.browsercam.com</li>
<li><span style="color: #006699;"><strong>Browsercam.com:</strong></span> Complete and submit the registration form to request a free trial of the BrowserCam service. The free trial activation will be sent to you via e-mail</li>
<li>After you have received and activated your free trial, lor in to the browsercam site.</li>
<li>Click the <span style="color: #006699;"><strong>Capture Wizard</strong></span> link on the left. The Screen Capture Service page will appear. This service provides screen captures of the web pages you specify as they render in the browser you specify.</li>
<li>Select the <span style="color: #006699;"><strong>Create A New Project</strong></span> radio button, and enter a project name, such as&#8217; Site Testing&#8217;. Scroll down and select the <span style="color: #006699;"><strong>Enter URL{s} Manually</strong></span> radio button. Enter the URLs of the web pages that you want to test. For example,  www.browsertesting_1.com  www.browsertesting_2.com  www.browsertesting_3.com (one URL per field)</li>
<li>Scroll down and click the<strong> <span style="color: #006699;">Continue</span></strong> button. You should see the Step:2Select Browsers And Preferences page. Select the check boxes next to several browser options.</li>
<li>Leave the other settings on this page set to the defaults, then click <span style="color: #006699;"><strong>Continue</strong></span>.</li>
<li>The Screen Capture order summary page will appear. Look for the <span style="color: #006699;"><strong>To See Your Capture Links Here</strong></span> link and click it. A complete list of the site and browser test combinations you ordered will appear on the following page. Notice that some screen shots may be labeled &#8220;In Progress&#8221; or &#8220;Not Started&#8221;. Refresh your browser window after a minute or two to see the latest status of the images.</li>
<li>Look through the screenshots. Do any of the sites not display correctly in any of the browsers? Which one? Do you see any patterns in which certain sites frequently display incorrectly?</li>
</ol>
<p>Because many site designers do not have the resources to test their sites in every possible browser, operating system and screen resolution, testing services such as BrowserCam can be extremely helpful for ensuring that your site will appear correctly for the widest possible range of users.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.designwithusability.com/2009/03/testing-a-site-in-multiple-browser/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Image Interlacing</title>
		<link>http://blog.designwithusability.com/2009/03/image-interlacing/</link>
		<comments>http://blog.designwithusability.com/2009/03/image-interlacing/#comments</comments>
		<pubDate>Sun, 15 Mar 2009 19:34:52 +0000</pubDate>
		<dc:creator>sumana</dc:creator>
		
		<category><![CDATA[Web Image Techniques]]></category>

		<category><![CDATA[image interlacing]]></category>

		<guid isPermaLink="false">http://blog.designwithusability.com/?p=66</guid>
		<description><![CDATA[Interlacing is a techniques that allows an image to progressively display itself in a browser as it downloads. The image will appear in stages over the period of downloading time. This action makes your pages more accessible to users with slower Internet connections.
Stander image formats are read from top to bottom. The top of a [...]]]></description>
			<content:encoded><![CDATA[<p>Interlacing is a techniques that allows an image to progressively display itself in a browser as it downloads. The image will appear in stages over the period of downloading time. This action makes your pages more<span id="more-66"></span> accessible to users with slower Internet connections.</p>
<p>Stander image formats are read from top to bottom. The top of a non interlaced image will appear after the browser has read 50 percent of the image. The bottom half will render some time later.</p>
<p>A non-interlaced image can remain invisible or incomplete for some time to a user who is downloading the image across a slow connection.</p>
<p>By contrast, an interlaced image appears to fade in as it renders in browser because it is interpreted differently. An interlaced image is repeatedly scanned from left to right. The first pass will render roughly 13 percent of the entire image. The second pass delivers 25 percent, and then continues in 25 percent increments until the image renders completely. During this precess, the full image will at first appear fuzzy, but will continuously sharpen.</p>
<p>The only web-ready image file formats that support interlacing are GIF and PNG. Both GIF formats, 87a and 89a, support interlacing. You can create an interlaced image by configuring an image file in a graphics-editing application and saving it as a compatible file type.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.designwithusability.com/2009/03/image-interlacing/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Culture and audience issues</title>
		<link>http://blog.designwithusability.com/2009/03/culture-and-audience-issues/</link>
		<comments>http://blog.designwithusability.com/2009/03/culture-and-audience-issues/#comments</comments>
		<pubDate>Sun, 15 Mar 2009 19:11:14 +0000</pubDate>
		<dc:creator>sumana</dc:creator>
		
		<category><![CDATA[Web Design Issues]]></category>

		<guid isPermaLink="false">http://blog.designwithusability.com/?p=63</guid>
		<description><![CDATA[Remember that the web pages and sites you help develop may be available to anyone in the world with a browser and an internet connection. Consider the following issues:

Form what culture are people who will primarily view this site.
Is the chosen color combination effective in the cultures this site targets or in most cultures?
What is [...]]]></description>
			<content:encoded><![CDATA[<p>Remember that the web pages and sites you help develop may be available to anyone in the world with a browser and an internet connection. Consider the following issues:<span id="more-63"></span></p>
<ul>
<li>Form what culture are people who will primarily view this site.</li>
<li>Is the chosen color combination effective in the cultures this site targets or in most cultures?</li>
<li>What is considered &#8220;professional&#8221; for the audience that will most likely view this site?</li>
</ul>
<p>Some color combination might be of specific significance to some culture or some might be offensive to some people. So while designing your website, it is very important to know your audience and always keep in mind what it going to be effective for the people your website is targeting.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.designwithusability.com/2009/03/culture-and-audience-issues/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
