<?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>WebDesign &#38; Such &#187; Cheat Sheet</title>
	<atom:link href="http://webdesignandsuch.com/category/cheat-sheet/feed/" rel="self" type="application/rss+xml" />
	<link>http://webdesignandsuch.com</link>
	<description>a Beantown Design Production</description>
	<lastBuildDate>Thu, 29 Jul 2010 00:02:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Internet Explorer Conditional Statements &amp; Hacks</title>
		<link>http://webdesignandsuch.com/2009/07/internet-explorer-hacks-and-conditional-statements/</link>
		<comments>http://webdesignandsuch.com/2009/07/internet-explorer-hacks-and-conditional-statements/#comments</comments>
		<pubDate>Sat, 25 Jul 2009 21:02:28 +0000</pubDate>
		<dc:creator>ilz</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Cheat Sheet]]></category>
		<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Conditional Statements]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Internet Explorer]]></category>

		<guid isPermaLink="false">http://webdesignandsuch.com/?p=279</guid>
		<description><![CDATA[
			
				
			
		

As a website designer, one of the challenges we have  is making websites that look and function the same in a variety of browsers. In a perfect world everybody would use the latest version of the same browser. Then we would only need to design websites for this one browser. Unfortunately this is not [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px; margin-bottom:10px">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwebdesignandsuch.com%2F2009%2F07%2Finternet-explorer-hacks-and-conditional-statements%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=?url=http%3A%2F%2Fwebdesignandsuch.com%2F2009%2F07%2Finternet-explorer-hacks-and-conditional-statements%2F&amp;style=normal" height="61" width="51" /><br />
			</a>
		</div>
<p><img class="alignnone size-full wp-image-292" title="ie" src="http://webdesignandsuch.com/wp-content/uploads/2009/07/ie2.jpg" alt="ie" width="459" height="328" class="frame"/></p>
<p>As a website designer, one of the challenges we have  is making websites that look and function the same in a variety of browsers. In a perfect world everybody would use the latest version of the same browser. Then we would only need to design websites for this one browser. Unfortunately this is not the case.</p>
<p>Perhaps people are scared of updating their browser, or don&#8217;t even know why they should. Newer browsers have better security, and support the latest technologies we use as website designers / developers.</p>
<p>One of the largest challenges is dealing with the Internet Explorer browser. This browser is one of the most commonly used browsers, but always seems to make problems. I&#8217;m not going to go into the different issues IE creates, I&#8217;ll assume you know. The point of this article is to show the different ways of targeting Internet Explorer browsers with your XHTML / CSS. There are many different techniques, I&#8217;m going to show the ones I use most commonly.<span id="more-279"></span></p>
<h1 style="margin-top:20px"><em>Conditional Statements</em></h1>
<h3>Import a CSS style sheet if the users browser is IE</h3>
<div  class="codeBox"><code>&lt;!--[if IE]&gt; </code><span><br />
&lt;link rel=&#8221;stylesheet&#8221; href=&#8221;styles/ie.css&#8221; type=&#8221;text/css&#8221; /&gt;</span><code><br />
&lt;![endif]--&gt;</code></div>
<h3>Import a CSS style sheet if the users browser is IE6</h3>
<div class="codeBox"><code>&lt;!--[if IE 6]&gt; </code><span><br />
&lt;link rel=&#8221;stylesheet&#8221; href=&#8221;styles/ie6.css&#8221; type=&#8221;text/css&#8221; /&gt;</span><code><br />
&lt;![endif]--&gt;</code></div>
<h3>Import a CSS style sheet if the users browser is IE7</h3>
<div class="codeBox"><code>&lt;!--[if IE 7]&gt; </code><span><br />
&lt;link rel=&#8221;stylesheet&#8221; href=&#8221;styles/ie7.css&#8221; type=&#8221;text/css&#8221; /&gt;</span><code><br />
&lt;![endif]--&gt;</code></div>
<h3>Import a CSS style sheet if the users browser is a version of IE before 7</h3>
<div class="codeBox"><code>&lt;!--[if lt IE 7]&gt;<br />
</code><span>&lt;link rel=&#8221;stylesheet&#8221; href=&#8221;styles/ie.css&#8221; type=&#8221;text/css&#8221; /&gt;</span><code><br />
&lt;![endif]--&gt;</code></div>
<h1 style="margin-top:20px"><em>CSS Hacks</em></h1>
<h3>Target IE with your CSS ( use star * )</h3>
<div class="codeBox"><code>#column {margin-left:20px; *margin-left:10px}</code></div>
<h3>Target IE6 with your CSS ( use underscore _ )</h3>
<div class="codeBox"><code>#column {margin-left:20px; _margin-left:10px}</code></div>
]]></content:encoded>
			<wfw:commentRss>http://webdesignandsuch.com/2009/07/internet-explorer-hacks-and-conditional-statements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lorem Ipsum filler text Cheat Sheet</title>
		<link>http://webdesignandsuch.com/2009/04/lorem-ipsum-filler-text-cheat-sheet/</link>
		<comments>http://webdesignandsuch.com/2009/04/lorem-ipsum-filler-text-cheat-sheet/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 23:41:57 +0000</pubDate>
		<dc:creator>ilz</dc:creator>
				<category><![CDATA[Cheat Sheet]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Dummy Text]]></category>
		<category><![CDATA[Filler Text]]></category>
		<category><![CDATA[Lorem Ipsum]]></category>

		<guid isPermaLink="false">http://webdesignandsuch.com/?p=105</guid>
		<description><![CDATA[
			
				
			
		

What is Lorem Ipsum?
Lorem Ipsum is dummy &#8220;filler&#8221; text. It&#8217;s been used as filler text since way before websites were around, back to the 1500s actually. The purpose of using Lorem Ipsum dummy text instead of grabbing real text from somewhere is that you want your viewer to concentrate on the design of the piece, [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px; margin-bottom:10px">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwebdesignandsuch.com%2F2009%2F04%2Florem-ipsum-filler-text-cheat-sheet%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=?url=http%3A%2F%2Fwebdesignandsuch.com%2F2009%2F04%2Florem-ipsum-filler-text-cheat-sheet%2F&amp;style=normal" height="61" width="51" /><br />
			</a>
		</div>
<p><img alt="Lorem Ipsum" src="http://webdesignandsuch.com/imagesForPosts/ipsum-cheat-sheet.jpg" title="lorem ipsum" class="alignnone" width="462" height="275" style="margin-top:-25px" class="frame"/></p>
<p><strong>What is Lorem Ipsum?</strong></p>
<p>Lorem Ipsum is dummy &#8220;filler&#8221; text. It&#8217;s been used as filler text since way before websites were around, back to the 1500s actually. The purpose of using Lorem Ipsum dummy text instead of grabbing real text from somewhere is that you want your viewer to concentrate on the design of the piece, be it a printed piece or a website. You want them to know that there is text there, but not to worry about the actual content of the text. You don&#8217;t want them to get distracted reading about last weeks homer that Ellz-busy hit over the monster.. which you randomly grabbed off the Globe website for filler text. Get the point? Good.</p>
<p><strong>So why am I making this post?</strong></p>
<p> Isn&#8217;t it easier to just have a word doc with the text ready to be copied/ pasted? Perhaps, if you work on the same computer daily. As a freelance designer, I work on at least five different computers weekly, and I&#8217;m always looking for the dummy text. I use it at least every other day. I decided to make a post that I can just bookmark on every computer with the text, and when I need it I can copy/ paste from this post. Feel free to bookmark this post and use the filler text in your own projects.</p>
<p><span id="more-105"></span></p>
<p style="background-color:#333; color:#fff"><strong>Lorem Ipsum Filler Text Below</strong></p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<p><strong>ilz out</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://webdesignandsuch.com/2009/04/lorem-ipsum-filler-text-cheat-sheet/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
