<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Jaz Design » Web and Graphic Design</title>
	
	<link>http://blog.jazdesign.co.uk</link>
	<description>making things beautiful</description>
	<lastBuildDate>Sun, 15 May 2011 19:32:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/jazdesign_creativity/web-graphic-design" /><feedburner:info uri="jazdesign_creativity/web-graphic-design" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:browserFriendly></feedburner:browserFriendly><item>
		<title>Don’t Forget the Label! Attention to Detail in HTML/CSS</title>
		<link>http://blog.jazdesign.co.uk/2010/02/01/dont-forget-the-label-attention-to-detail-in-htmlcss/</link>
		<comments>http://blog.jazdesign.co.uk/2010/02/01/dont-forget-the-label-attention-to-detail-in-htmlcss/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 21:13:38 +0000</pubDate>
		<dc:creator>Jaz</dc:creator>
				<category><![CDATA[Creativity]]></category>
		<category><![CDATA[Web and Graphic Design]]></category>
		<category><![CDATA[attention to detail]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css reset]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[label]]></category>
		<category><![CDATA[pointer]]></category>
		<category><![CDATA[snippets]]></category>
		<category><![CDATA[tapbots]]></category>

		<guid isPermaLink="false">http://blog.jazdesign.co.uk/?p=530</guid>
		<description><![CDATA[Attention to detail is paramount in design. Sometimes it&#8217;s the little things which can make or break a design or engage a user just that little bit more. My favourite example of this at the moment is the footer in the new Tapbots site. Notice the very subtle highlight of the grey and the text [...]]]></description>
			<content:encoded><![CDATA[<p>Attention to detail is paramount in design. Sometimes it&#8217;s the little things which can make or break a design or engage a user just that little bit more. My favourite example of this at the moment is the footer in the <a href="http://tapbots.com/" target="_blank">new Tapbots site</a>.</p>
<p><a href="http://tapbots.com/"><img class="size-full wp-image-533 alignnone" title="tapbots" src="http://blog.jazdesign.co.uk/wp-content/uploads/2010/02/tapbots.jpg" alt="" width="512" height="306" /></a></p>
<p>Notice the very subtle highlight of the grey and the text on the &#8220;read the blog&#8221; link when you mouseover? That&#8217;s attention to detail.</p>
<p>The thing with the label tag is perhaps not so creative, but more of a necessity. You should take the time to make <a href="http://www.w3schools.com/tags/tag_label.asp" target="_blank">labels</a> for your inputs/textareas/selects etc because it adds to the usability of the page and validates.</p>
<p>Not only should you take the time to make your label tags, but you should take the time to <em>style them</em>.</p>
<p>That&#8217;s right, style them. The default styling, in the majority of browsers, on a label tag is simply the same as the text. This would be fine, except a label isn&#8217;t just text. It&#8217;s interactive. Have you ever noticed when clicking on the text next to a checkbox it checks or unchecks the box? Assuming all elements have labels assigned to them, you can click on any label in any form and have it move the focus to that element. This is exceptionally useful for things such as checkboxes and radio buttons which can be quite small. You&#8217;re increasing the clickable area around the element and therefore increasing usability.</p>
<p>I would wager a lot of people don&#8217;t know about this trick, I&#8217;d say some figure it out by chance like I did, and the reason? By default the cursor style does not change over a label.</p>
<p>I very quickly learnt to add the following to the CSS reset I use on all my sites:</p>
<pre><code>label{
cursor:pointer;
}</code>
</pre>
<p><small>You can <a href="http://sixrevisions.com/css/css-tips/css-tip-1-resetting-your-styles-with-css-reset/" target="_blank">find out more about CSS resets here</a>.</small></p>
<p><a href="http://blog.jazdesign.co.uk/wp-content/uploads/2010/02/cursor-pointer.jpg"><img class="size-full wp-image-538 alignnone" title="cursor pointer" src="http://blog.jazdesign.co.uk/wp-content/uploads/2010/02/cursor-pointer.jpg" alt="" width="429" height="119" /></a></p>
<p>Voila! Your cursor should turn into a hand when hovering over the label, and when clicked it will place the focus in the associated element.</p>
<p>I usually go a bit further and give the label some colour, or weight, make it fit with the rest of the design.</p>
<p>It&#8217;s a good idea to put the cursor:pointer style on the button tag too, just to provide the added visual reinforcement that it is a button and to keep behaviours on the web and computers consistent.</p>
<p>So, add that snippet to your CSS reset, and consider how you can creatively enhance your form with more styles now that you have the label tag to play with!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jazdesign.co.uk/2010/02/01/dont-forget-the-label-attention-to-detail-in-htmlcss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft and IE8: Compliance Mode?</title>
		<link>http://blog.jazdesign.co.uk/2009/06/18/microsoft-and-ie8-compliance-mode/</link>
		<comments>http://blog.jazdesign.co.uk/2009/06/18/microsoft-and-ie8-compliance-mode/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 14:30:01 +0000</pubDate>
		<dc:creator>Jaz</dc:creator>
				<category><![CDATA[My Inner Geek]]></category>
		<category><![CDATA[Web and Graphic Design]]></category>
		<category><![CDATA[compatability]]></category>
		<category><![CDATA[compliance mode]]></category>
		<category><![CDATA[IE8]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[stupid]]></category>
		<category><![CDATA[web browser wars]]></category>
		<category><![CDATA[web browsers]]></category>

		<guid isPermaLink="false">http://blog.jazdesign.co.uk/?p=326</guid>
		<description><![CDATA[I&#8217;ve been testing a lot of our sites in IE8 the past couple of days. Today I noticed that the little broken page icon that appears next to the address bar was missing from the IE8 welcome page. Now I found this to be curious as as far as I&#8217;m aware (I could be wrong [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been testing a lot of our sites in IE8 the past couple of days. Today I noticed that the little broken page icon that appears next to the address bar was missing from the IE8 welcome page. Now I found this to be curious as as far as I&#8217;m aware (I could be wrong here, let me know if so!) the only thing that prevents that from appearing is if you&#8217;re already running in IE7 emulation mode. I checked out their code with the new Developer Tools (virtually Firebug, but I&#8217;m not complaining). Lo and behold, <strong>the Welcome to IE8 page has the &#8220;emulate IE7&#8243; meta tag!</strong></p>
<p>I thought I&#8217;d check out Microsoft&#8217;s actual website&#8230; <a href="http://blog.jazdesign.co.uk/wp-content/uploads/2009/06/microsoft_compliance.jpg" target="_blank">(you can view the full screenshot here)</a></p>
<p><a href="http://blog.jazdesign.co.uk/wp-content/uploads/2009/06/microsoft_compliance_closeup.jpg"><img class="alignleft size-full wp-image-327" title="microsoft_compliance_closeup" src="http://blog.jazdesign.co.uk/wp-content/uploads/2009/06/microsoft_compliance_closeup.jpg" alt="microsoft_compliance_closeup" width="450" height="159" /></a><a href="http://www.microsoft.com/en/us/default.aspx" target="_blank">Visit the website to see for yourself.</a></p>
<p>This boggles my mind! Standards for everyone eh?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jazdesign.co.uk/2009/06/18/microsoft-and-ie8-compliance-mode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

