<?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>Full On Design &#187; Lt</title>
	<atom:link href="http://www.fullondesign.co.uk/tag/lt/feed" rel="self" type="application/rss+xml" />
	<link>http://www.fullondesign.co.uk</link>
	<description>Design &#38; Web Technologies</description>
	<lastBuildDate>Mon, 21 Jun 2010 16:45:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Making Zebra Stripes with CSS3</title>
		<link>http://www.fullondesign.co.uk/design/usability/1227-making-zebra-stripes-with-css3.htm</link>
		<comments>http://www.fullondesign.co.uk/design/usability/1227-making-zebra-stripes-with-css3.htm#comments</comments>
		<pubDate>Fri, 30 Oct 2009 22:01:35 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Usability]]></category>
		<category><![CDATA[Amp]]></category>
		<category><![CDATA[Background Color]]></category>
		<category><![CDATA[Brackets]]></category>
		<category><![CDATA[Colours]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[Css Reference]]></category>
		<category><![CDATA[Css3]]></category>
		<category><![CDATA[Element]]></category>
		<category><![CDATA[Lt]]></category>
		<category><![CDATA[Nth Number]]></category>
		<category><![CDATA[pseudo-class]]></category>
		<category><![CDATA[Sitepoint]]></category>
		<category><![CDATA[Stripping]]></category>
		<category><![CDATA[Ul]]></category>
		<category><![CDATA[Zebra]]></category>
		<category><![CDATA[Zebra Stripes]]></category>

		<guid isPermaLink="false">http://www.fullondesign.co.uk/?p=1227</guid>
		<description><![CDATA[Zebra Stripping is the technique of having different colours per each line on a list. It generally is considered to help users read large tables of information; however there is evidence suggesting the effectiveness of zebra stripes is somewhat overrated. Having said that, in CSS3 it&#8217;s very easy to implement so it&#8217;s worthwhile adding. To [...]]]></description>
			<content:encoded><![CDATA[<p>Zebra Stripping is the technique of having different colours per each line on a list. It generally is considered to help users read large tables of information; however there is <a href="http://www.alistapart.com/articles/zebrastripingdoesithelp/">evidence suggesting the effectiveness of zebra stripes is somewhat overrated</a>. Having said that, in CSS3 it&#8217;s very easy to implement so it&#8217;s worthwhile adding.</p>
<p>To add Zebra Strips to a list, all you need to do is adding the following pseudo-class to the end of the CSS element you wish to edit:</p>
<p>
<pre class="brush: css;">
ul#example_list li:nth-child(odd) {
 background-color:#FFF;
}
</pre>
</p>
<p><span id="more-1227"></span></p>
<p>In this example, I&#8217;ve used an unordered list element. The data in the brackets refers to the &#8220;nth&#8221; number to affect, for example putting &#8220;(even)&#8221; will affect every even &lt;li&gt;. You can also put number in, for example &#8220;(3)&#8221; would affect every 3rd &lt;li&gt;.</p>
<p>Below is a link to a working example of the code in action (Feel free to copy &amp; share).</p>
<p><a href="http://www.fullondesign.co.uk/examples/zebra_strips_in_css3/zebra_strips_in_css3.html"><img class="aligncenter size-full wp-image-1229" title="zebra_strips_in_css3" src="http://www.fullondesign.co.uk/wp-content/uploads/2009/10/zebra_strips_in_css3.png" alt="zebra_strips_in_css3" width="103" height="108" /></a></p>
<p>If you want to read a bit more about the nth-child pseudo-class I recommend the <a href="http://reference.sitepoint.com/css/pseudoclass-nthchild">sitepoint CSS reference</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fullondesign.co.uk/design/usability/1227-making-zebra-stripes-with-css3.htm/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Decrease loading times via .htaccess</title>
		<link>http://www.fullondesign.co.uk/coding/700-decrease-loading-times-via-htaccess.htm</link>
		<comments>http://www.fullondesign.co.uk/coding/700-decrease-loading-times-via-htaccess.htm#comments</comments>
		<pubDate>Wed, 15 Apr 2009 23:30:46 +0000</pubDate>
		<dc:creator>Mike</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[10 Years]]></category>
		<category><![CDATA[Amount Of Time]]></category>
		<category><![CDATA[Bandwidth]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[Cache Files]]></category>
		<category><![CDATA[Content Type]]></category>
		<category><![CDATA[Decrease loading times]]></category>
		<category><![CDATA[eTags]]></category>
		<category><![CDATA[File Php]]></category>
		<category><![CDATA[Gzip]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[Htaccess File]]></category>
		<category><![CDATA[Image Gif]]></category>
		<category><![CDATA[Image Jpeg]]></category>
		<category><![CDATA[Image Png]]></category>
		<category><![CDATA[Js]]></category>
		<category><![CDATA[Loading Times]]></category>
		<category><![CDATA[Lt]]></category>
		<category><![CDATA[Nifty Trick]]></category>
		<category><![CDATA[Pl]]></category>
		<category><![CDATA[Text Html]]></category>
		<category><![CDATA[Text Javascript]]></category>

		<guid isPermaLink="false">http://www.fullondesign.co.uk/?p=700</guid>
		<description><![CDATA[Here is a really nifty trick I&#8217;ve been using for a while to decrease the time a page takes to load. Add the following lines of code to your .htaccess file: FileETag none # Turn off eTags &#60;IfModule mod_expires.c&#62; # Check that the expires module has been installed ExpiresActive On ExpiresDefault &#34;access plus 10 years&#34; [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a really nifty trick I&#8217;ve been using for a while to decrease the time a page takes to load. Add the following lines of code to your .htaccess file:</p>
<pre class="brush: plain;">FileETag none # Turn off eTags
&lt;IfModule mod_expires.c&gt; # Check that the expires module has been installed
ExpiresActive On
ExpiresDefault &quot;access plus 10 years&quot;
ExpiresByType image/gif &quot;access plus 10 years&quot;
ExpiresByType image/jpeg &quot;access plus 10 years&quot;
ExpiresByType image/png &quot;access plus 10 years&quot;
ExpiresByType text/css &quot;access plus 10 years&quot;
ExpiresByType text/html &quot;access plus 1 seconds&quot;
ExpiresByType text/javascript &quot;access plus 10 years&quot;
ExpiresByType application/x-unknown-content-type &quot;access plus 10 years&quot;
ExpiresByType application/x-javascript &quot;access plus 10 years&quot;
&lt;/IfModule&gt;
&lt;IfModule mod_gzip.c&gt;  # check if gZip support has been installed
mod_gzip_on         Yes
mod_gzip_dechunk    Yes
mod_gzip_item_include file          \.(html?|txt|css|js|php|pl)$
mod_gzip_item_include handler       ^cgi-script$
mod_gzip_item_include mime      ^text\.*
mod_gzip_item_include mime      ^application/x-javascript.*
mod_gzip_item_exclude mime      ^image\.*
mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
&lt;/IfModule&gt;
</pre>
<p>This quick and easy method tells the user to cache files which are unlikely to change for 10 years (feel free to change the amount of time) and HTML for 1 second. It also turns off eTags.</p>
<p><em>Update:</em> I also added a another piece of code I use which turns on Gzip, which reduces the amount of bandwidth required to transfer a file.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fullondesign.co.uk/coding/700-decrease-loading-times-via-htaccess.htm/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
