<?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>Cardeo &#187; CSS</title>
	<atom:link href="http://www.cardeo.ca/tag/css/feed" rel="self" type="application/rss+xml" />
	<link>http://www.cardeo.ca</link>
	<description>Ramblings on web design and social media</description>
	<lastBuildDate>Wed, 26 Oct 2011 17:58:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>AnonAnon CSS Framework</title>
		<link>http://www.cardeo.ca/2011/anonanon-css-framework</link>
		<comments>http://www.cardeo.ca/2011/anonanon-css-framework#comments</comments>
		<pubDate>Sat, 16 Jul 2011 05:35:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[baseline]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[grid]]></category>
		<category><![CDATA[Minimal]]></category>
		<category><![CDATA[responsive]]></category>

		<guid isPermaLink="false">http://www.cardeo.ca/?p=4063</guid>
		<description><![CDATA[A responsive CSS framework on a baseline grid Wow! It&#8217;s been too long since I&#8217;ve published a post. Sorry guys, but I&#8217;ve been working on a few new projects. The first of them is the AnonAnon CSS Framework. Does the world need another CSS framework? Probably not, but mine has a few cool features that [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.cardeo.ca/2011/anonanon-css-framework"><img src="http://www.cardeo.ca/wp-content/uploads/2011/07/blog.jpg" alt="" title="blog" width="550" height="250" class="alignnone size-full wp-image-4064" /></a><br />
<span id="more-4063"></span></p>
<h4>A responsive CSS framework on a baseline grid</h4>
<p>Wow! It&#8217;s been too long since I&#8217;ve published a post. Sorry guys, but I&#8217;ve been working on a few new projects. The first of them is the <a href="http://anonanon.org">AnonAnon</a> CSS Framework. Does the world need another CSS framework? Probably not, but mine has a few cool features that you won&#8217;t find elsewhere. Here&#8217;s a list:</p>
<ul>
<li>Minimal design and lightweight code</li>
<li>Responsive for mobile</li>
<li>Built on a baseline typographic grid</li>
<li>Includes jQuery UI elements</li>
<li>10 column, fluid grid</li>
</ul>
<p>To learn more or download, please head over to <a href="http://anonanon.org">anonanon.org</a>. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.cardeo.ca/2011/anonanon-css-framework/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zebra-striping rows and columns</title>
		<link>http://www.cardeo.ca/2010/zebra-striping-rows-and-columns</link>
		<comments>http://www.cardeo.ca/2010/zebra-striping-rows-and-columns#comments</comments>
		<pubDate>Sat, 16 Oct 2010 21:19:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[zebra-striping]]></category>

		<guid isPermaLink="false">http://www.cardeo.ca/?p=3750</guid>
		<description><![CDATA[If you&#8217;re looking for a no nonsense technique for applying zebra-striping to a table using pure CSS, you should check out this post from csswizardry.com. In the past, you would&#8217;ve had to use javascript or another scripting technique to achieve this formatting. However, this method allows for pure CSS3 code to get the zebra-striping to [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re looking for a no nonsense technique for applying zebra-striping to a table using pure CSS, you should check out <a href="http://csswizardry.com/2010/08/zebra-striping-rows-and-columns/">this post</a> from <a href="http://csswizardry.com">csswizardry.com</a>.<br />
<span id="more-3750"></span></p>
<p>In the past, you would&#8217;ve had to use javascript or another scripting technique to achieve this formatting. However, this method allows for pure CSS3 code to get the zebra-striping to work. The one small downside is the fact that it is only supported by CSS3 browsers. </p>
<h4>Work around for older browsers</h4>
<p>This method is a little code heavier, but it will work in all browsers. First things first, we need to create some styles for the alternate table rows. Check out the example:</p>
<pre class="highlight">
tr.alt {
 background: color: #ccc;
}
</pre>
<blockquote class="center"><p><a href="http://codecanyon.net?ref=cardeo"><img src="/images/cc_468x60_v1.gif" width="468" height="60" alt="Code Canyon" /></a></p></blockquote>
<p>Here&#8217;s where the code heavy portion of the technique comes into play. You need to insert the <strong>alt</strong> class on every even <strong>&lt;tr&gt;</strong> tag in your table, as shown below:</p>
<pre class="highlight">
&lt;table&gt;
 &lt;tr&gt;
  &lt;td&gt;a row&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr class=&quot;alt&quot;&gt;
  &lt;td&gt;another row&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
  &lt;td&gt;a third row&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr class=&quot;alt&quot;&gt;
  &lt;td&gt;a fourth row&lt;/td&gt;
 &lt;/tr&gt;
&lt;/table&gt;
</pre>
<p>That&#8217;s it, that&#8217;s all, you can view a demo <a href="/demos/zebra-stripes/">here</a>. If you want the lighter CSS3 version, check it out at: <a href="http://csswizardry.com/2010/08/zebra-striping-rows-and-columns/">csswizadry.com</a>. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.cardeo.ca/2010/zebra-striping-rows-and-columns/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Styling a Custom Facebook Tab</title>
		<link>http://www.cardeo.ca/2010/styling-a-custom-facebook-tab</link>
		<comments>http://www.cardeo.ca/2010/styling-a-custom-facebook-tab#comments</comments>
		<pubDate>Wed, 15 Sep 2010 07:04:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[tab]]></category>

		<guid isPermaLink="false">http://www.cardeo.ca/?p=3536</guid>
		<description><![CDATA[Up until now, I was under the impression that you had to do all your styling inline when building a custom Facebook tab. Rejoice! Today I discovered there is another way to do the styling which is way less annoying. Use the &#60;style&#62; Tag To avoid using inline styles, you can insert a &#60;style&#62;&#60;/style&#62; at [...]]]></description>
			<content:encoded><![CDATA[<p>Up until now, I was under the impression that you had to do all your styling inline when building a <a href="http://www.cardeo.ca/2010/how-to-create-a-custom-tab-for-your-facebook-page">custom Facebook tab</a>. Rejoice! Today I discovered there is another way to do the styling which is way less annoying.<span id="more-3536"></span></p>
<h4>Use the &lt;style&gt; Tag</h4>
<p>To avoid using inline styles, you can insert a <strong>&lt;style&gt;&lt;/style&gt;</strong> at the top of your document. See below for an example:</p>
<h4>Here&#8217;s what the code looks like</h4>
<pre class="highlight">
&lt;style&gt;
#mybox {
 background-color:#000;
 width:200px;
 height:200px;
}
&lt;/style&gt;

&lt;div id=&quot;mybox&quot;&gt;This is my box&lt;/div&gt;
</pre>
<p>Note how the <strong>&lt;style&gt;</strong> tag is not wrapped in a <strong>&lt;head&gt;</strong> tag. Also the code for your tab is not wrapped in a <strong>&lt;body&gt;</strong> tag. This is intentional, you need to leave those tags out for this to work. A little unorthodox but it gets the job done. Better yet, you don&#8217;t have to use those pesky inline styles!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cardeo.ca/2010/styling-a-custom-facebook-tab/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Envato Birthday Bundle: Over $400 in Envato Files for $20!</title>
		<link>http://www.cardeo.ca/2010/envato-birthday-bundle-400-in-envato-files-for-20</link>
		<comments>http://www.cardeo.ca/2010/envato-birthday-bundle-400-in-envato-files-for-20#comments</comments>
		<pubDate>Thu, 19 Aug 2010 18:15:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Awesome]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[bundle]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[envato]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[graphicriver]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[stock]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[themeforest]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.cardeo.ca/?p=3412</guid>
		<description><![CDATA[If you like a good deal, then I have a doozie for you. The good people over at Envato are celebrating their 4th birthday, by offering an Envato Birthday Bundle of files from all of their stock websites. You get over $400 worth of files for only $20!. Now that is a pretty sweet deal. [...]]]></description>
			<content:encoded><![CDATA[<p>If you like a good deal, then I have a doozie for you. The good people over at Envato are celebrating their 4th birthday, by offering an <a href="http://themeforest.net/item/envato-birthday-bundle-2010/119266?ref=cardeo">Envato Birthday Bundle</a> of files from all of their stock websites. You get <strong>over $400 worth of files for only $20!</strong>. Now that is a pretty sweet deal. There&#8217;s only once catch, the offer is only good until Tuesday August 24th. Make sure you head over there now and <a href="http://themeforest.net/item/envato-birthday-bundle-2010/119266?ref=cardeo">download the bundle</a>.<span id="more-3412"></span></p>
<blockquote class="center"><p><strong>$400 in files for only $20! | <a href="http://themeforest.net/item/envato-birthday-bundle-2010/119266?ref=cardeo">Buy Now</a></strong></p></blockquote>
<h4>What&#8217;s Included?</h4>
<p>Here&#8217;s a list of everything included in the bundle:</p>
<p><a href="http://themeforest.net?ref=cardeo">ThemeForest.net Files</a><br />
WordPress Themes, Website Templates, Photoshop Templates</p>
<ul>
<li><a href="http://themeforest.net/item/open-by-cudazi/95080?ref=cardeo">OPEN WordPress Portfolio Theme</a></li>
<li><a href="http://themeforest.net/item/96-display/84746?ref=cardeo">96 Display Website Template</a></li>
<li><a href="http://themeforest.net/item/brandmedia-modern-psd/109445?ref=cardeo">BrandMedia Modern Photoshop Template</a></li>
<li><a href="http://themeforest.net/item/graphic-designer-newletter-template/109342?ref=cardeo">Graphic Designer Email Newsletter Template</a></li>
<li><a href="http://themeforest.net/item/designerwannabe-magaizne-blog-and-portfolio/108726?ref=cardeo">DesignerWannabe Magazine Website Template</a></li>
</ul>
<p><a href="http://codecanyon.net?ref=cardeo">CodeCanyon.net Files</a><br />
Javascript, PHP, Plugins, .NET, CSS</p>
<ul>
<li><a href="http://codecanyon.net/item/aviaslider-jquery-slideshow/105090?ref=cardeo">AviaSlider &#8211; jQuery Slideshow</a></li>
<li><a href="http://codecanyon.net/item/griddler-pricing-grid-i/109068?ref=cardeo">CSS Griddler Pricing Grid</a></li>
<li><a href="http://codecanyon.net/item/twitter-widget-pro-wordpress-premium-plugin/109372?ref=cardeo">Twitter Widget Pro for WordPress</a></li>
<li><a href="http://codecanyon.net/item/ajax-contact-form-extended/82622?ref=cardeo">AJAX Contact Form</a></li>
<li><a href="http://codecanyon.net/item/simple-user-counter/51112?ref=cardeo">Simple PHP User Counter</a></li>
<li><a href="http://codecanyon.net/item/jsocial/62281?ref=cardeo">jSocial Sharing Widget</a></li>
</ul>
<p><a href="http://graphicriver.net?ref=cardeo">GraphicRiver.net Files</a><br />
Graphics, Templates, Textures, Backgrounds, Vectors, Icons, Fonts</p>
<ul>
<li><a href="http://graphicriver.net/item/8-grunge-backgrounds-2000x1500/81445?ref=cardeo">8 Grunge Backgrounds</a></li>
<li><a href="http://graphicriver.net/item/stylish-mosaic-background-wallpaper/51191?ref=cardeo">Stylish Mosaic Backgrounds</a></li>
<li><a href="http://graphicriver.net/item/6-photoshop-actions-/64901?ref=cardeo">6 Photoshop Actions</a></li>
<li><a href="http://graphicriver.net/item/tileable-leather-woven-texture-30/107902?ref=cardeo">Tileable Leather Texture</a></li>
<li><a href="http://graphicriver.net/item/sexy-vector-laptop/48232?ref=cardeo">Sexy Vector Laptop</a></li>
<li><a href="http://graphicriver.net/item/flyer-postcard-template/102747?ref=cardeo">Flyer/Postcard Template</a></li>
<li><a href="http://graphicriver.net/item/shiny-bubble-backgrounds/96731?ref=cardeo">Shiny Bubble Backgrounds</a></li>
<li><a href="http://graphicriver.net/item/lead-true-type-v10/99456?ref=cardeo">Lead True Type 1.0</a></li>
<li><a href="http://graphicriver.net/item/badges-and-sale-tags-for-online-shop/47402?ref=cardeo">Badges &amp; Sale Tags</a></li>
<li><a href="http://graphicriver.net/item/old-tv-wide-normal/100778?ref=cardeo">Old TV Stock Image</a></li>
<li><a href="http://graphicriver.net/item/solar-pricing-table/105728?ref=cardeo">Solar Pricing Table</a></li>
<li><a href="http://graphicriver.net/item/creative-pro-mega-pack/100011?ref=cardeo">Creative Pro Business Card Pack</a></li>
<li><a href="http://graphicriver.net/item/light-bubbles-professional-powerpoint-template/72899?ref=cardeo">Light Bubbles PowerPoint Template</a></li>
<li><a href="http://graphicriver.net/item/the-newspaper-frontpage/37325?ref=cardeo">The Newspaper Front Page Design Template</a></li>
<li><a href="http://graphicriver.net/item/smart-photo-strip/103199?ref=cardeo">Smart Photo Strip</a></li>
<li><a href="http://graphicriver.net/item/21-web-icons/81471?ref=cardeo">21 Web Icon Set</a></li>
</ul>
<blockquote class="center"><p><strong>$400 in files for only $20! | <a href="http://themeforest.net/item/envato-birthday-bundle-2010/119266?ref=cardeo">Buy Now</a></strong></p></blockquote>
<p><a href="http://videohive.net?ref=cardeo">VideoHive.Net Files</a><br />
Video Project Files, Motion Graphics, Stock Footage</p>
<ul>
<li><a href="http://videohive.net/item/reveal-transition/74797?ref=cardeo">Reveal Transition</a></li>
<li><a href="http://videohive.net/item/the-elegant-spin-hd/84491?ref=cardeo">The Elegant Spin HD</a></li>
<li><a href="http://videohive.net/item/3d-identity/110571?ref=cardeo">3D Identity</a></li>
<li><a href="http://videohive.net/item/the-shatter/104762?ref=cardeo">The Shatter</a></li>
<li><a href="http://videohive.net/item/sketch/91631?ref=cardeo">Sketch</a></li>
<li><a href="http://videohive.net/item/incubus-logo-cs3/96543?ref=cardeo">Incubus Logo CS3</a></li>
<li><a href="http://videohive.net/item/onyx-logo/83798?ref=cardeo">Onyx Logo</a></li>
</ul>
<p><a href="http://3docean.net">3DOcean.net Files</a><br />
3D Models, Textures, 2D Concepts</p>
<ul>
<li><a href="http://3docean.net/item/high-armchair/86794?ref=cardeo">High Armchair</a></li>
<li><a href="http://3docean.net/item/hdri-1325-sun-clouds/101801?ref=cardeo">HDRi &#8211; 1325 Sun Clouds</a></li>
<li><a href="http://3docean.net/item/gameready-awp-sniper-rifle/113821?ref=cardeo">Game-Ready AWP Sniper Rifle</a></li>
</ul>
<p><a href="http://activeden.net?ref=cardeo">ActiveDen.net Files</a><br />
Flash Files</p>
<ul>
<li><a href="http://activeden.net/item/3d-coming-soon-mini-placeholder-template-05-as3/107906?ref=cardeo">36 Coming Soon, Countdown Clock Template</a></li>
<li><a href="http://activeden.net/item/photoshoot-creative-template/101258?ref=cardeo">Photoshoot Creative Template</a></li>
<li><a href="http://activeden.net/item/the-archer-wordpress-video-movie-player/92594?ref=cardeo">The Archer WordPress Video Player</a></li>
<li><a href="http://activeden.net/item/digital-boxes-preloader/48237?ref=cardeo">Digital Boxes Preloader</a></li>
<li><a href="http://envato.com/birthday-bundle/2010/unity3d-activejump.html?ref=cardeo">Unity3D Starter Pack</a></li>
</ul>
<p><a href="http://audiojungle.net">AudioJungle.net Files</a><br />
Music &amp; Sound Files</p>
<ul>
<li><a href="http://audiojungle.net/item/one-fine-day/109769?ref=cardeo">One Fine Day</a></li>
<li><a href="http://audiojungle.net/item/driving-far-far-away/65893?ref=cardeo">Driving Far, Far Away</a></li>
<li><a href="http://audiojungle.net/item/dreaming/50366?ref=cardeo">Dreaming</a></li>
<li><a href="http://audiojungle.net/item/space-battle-number-four/76485?ref=cardeo">Space Battle Number Four</a></li>
<li><a href="http://audiojungle.net/item/smoke-orchestra/101140?ref=cardeo">Smoke Orchestra</a></li>
<li><a href="http://audiojungle.net/item/space-sequence/106731?ref=cardeo">Space Sequence</a></li>
</ul>
<p><a href="http://net.tutsplus.com?ref=cardeo">Net.Tutplus.com</a><br />
Premium Tutorials</p>
<ul>
<li><a href="http://net.tutsplus.com/tutorials/html-css-techniques/coding-a-complex-design-into-css-and-html-new-plus-tutorial/?ref=cardeo">Coding a Complex Design into CSS and HTML</a></li>
<li><a href="http://psd.tutsplus.com/articles/news/combine-hand-drawn-art-with-photoshop-psd-plus-tutorial/?ref=cardeo">Combine Hand-drawn Art with Photoshop</a></li>
<li><a href="http://psd.tutsplus.com/tutorials/photo-effects-tutorials/how-to-blend-images-together-using-adjustment-layers-psd-premium-tutorial/?ref=cardeo">How to Blend Images Together Using Adjustment Layers</a></li>
<li><a href="http://vector.tutsplus.com/articles/news/ultimate-type-twisting-with-adobe-illustrator-vector-plus-tutorial/?ref=cardeo">Ultimate Type Twisting with Adobe Illustrator</a></li>
</ul>
<h4>Extras</h4>
<p>On top of all those files, there are a couple additional extras thrown in:</p>
<ul>
<li>$50 voucher for <a href="http://www.mediatemple.net/">MediaTemple.net</a>.</li>
<li>$10 voucher for <a href="https://www.e-junkie.com/ecom/gb.php?cl=12635&#038;c=ib&#038;aff=38173" target="ejejcsingle">RockablePress.com</a></li>
</ul>
<blockquote class="center"><p><strong>$400 in files for only $20! | <a href="http://themeforest.net/item/envato-birthday-bundle-2010/119266?ref=cardeo">Buy Now</a></strong></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.cardeo.ca/2010/envato-birthday-bundle-400-in-envato-files-for-20/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best Practices For Positioning Icons With CSS</title>
		<link>http://www.cardeo.ca/2010/best-practices-for-positioning-icons-with-css</link>
		<comments>http://www.cardeo.ca/2010/best-practices-for-positioning-icons-with-css#comments</comments>
		<pubDate>Fri, 06 Aug 2010 07:05:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[center]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[position]]></category>
		<category><![CDATA[vertical]]></category>

		<guid isPermaLink="false">http://www.cardeo.ca/?p=3329</guid>
		<description><![CDATA[In my opinion, icons are one of the small details that help polish an excellent website. However, it can be all-for-not if they aren&#8217;t positioned properly in your layout. In this post, I&#8217;m going to outline a few best practices for positioning your icons using CSS. Download The Source Files Small Icon With Body Copy [...]]]></description>
			<content:encoded><![CDATA[<p>In my opinion, icons are one of the small details that help polish an excellent website. However, it can be all-for-not if they aren&#8217;t positioned properly in your layout. In this post, I&#8217;m going to outline a few best practices for positioning your icons using CSS. <span id="more-3329"></span></p>
<blockquote class="center"><p><a href="http://www.mediafire.com/?6j4q6j21vz5dbi0">Download The Source Files</a></p></blockquote>
<h4>Small Icon With Body Copy</h4>
<p>This is one of the most commonly messed up use of icons you&#8217;ll see out there. The web designer will simply insert the icon image code right before the text. I&#8217;d highly recommend against using this technique. Here&#8217;s an example of it:</p>
<pre class="highlight">
&lt;img src="icon.gif" /&gt;My text here
</pre>
<p><strong>Why does this suck?</strong> Because you have no control over the positioning of the icon. A better practice would be to wrap the the text in a <strong>&lt;span&gt;</strong> tag and set the icon as the background image. Also, this technique works the best when the height of the icon matches the height of the text. Therefore, go with a 16px x 16px icon. We can adjust the vertical positioning of the background image/icon if need be. Here&#8217;s what the code looks like:</p>
<h4>CSS</h4>
<pre class="highlight">
.icon {
 background: url(icon.png) 0 0 no-repeat;
 display: block;
 height: 16px;
 line-height: 16px;
 padding-left: 20px;
 margin-right: 10px;
}
</pre>
<h4>HTML</h4>
<pre class="highlight">
&lt;span class="icon"&gt;Icon text goes here&lt;/span&gt;
</pre>
<h4>Here&#8217;s What It Should Look Like</h4>
<p><img src="http://www.cardeo.ca/wp-content/uploads/2010/08/Screen-shot-2010-08-05-at-5-Aug-10-11.59.20-PM.png" alt="" title="small-icon" width="158" height="26" class="alignnone size-full wp-image-3353" /></p>
<h4>The Code Explained</h4>
<ul>
<li>We set the <strong>background</strong> property to our icon image.</li>
<li>The position is set 0 0, you shouldn&#8217;t have to tweak this, as long as your icon height matches your text height.</li>
<li>We <strong>display</strong> it as a block so the whole icon is shown.</li>
<li>The <strong>height</strong> is set to the height of our icon.</li>
<li><strong>line-height</strong> forces the text to align vertically with the icon.</li>
<li>We <strong>pad</strong> the class left 20px to leave space for the icon.</li>
<li>Then we add a <strong>margin</strong> of 10px right to create some space between the icon and the icon text.</li>
</ul>
<p>That&#8217;s it, now your icon will always appear vertically centered to your text. As well, it will have the same spacing between the icon and the icon text. </p>
<p>You can easily apply this same technique to larger icons that are combined with larger icon text. Simply tweak the height, line-height, padding, and margin to match your new icon and text sizes. </p>
<blockquote class="center"><p><a href="http://graphicriver.net?ref=cardeo"><img src="http://www.cardeo.ca/wp-content/uploads/2009/01/gr_468x60_v1.gif" alt="" title="gr_468x60_v1" width="468" height="60" class="alignnone size-full wp-image-3035" /></a></p></blockquote>
<h4>Large Icon With Body Copy</h4>
<p>Using a larger sized icon with body copy is quite similar to the above technique. We simply need to tweak some of our property values to work with the bigger icon. Let&#8217;s assume the size our larger icon is 48px x 48px. Here&#8217;s what the code looks like:</p>
<h4>CSS</h4>
<pre class="highlight">
.icon-big {
 background: url(icon-big.png) 0 0 no-repeat;
 display: block;
 height: 48px;
 line-height: 48px;
 padding-left: 50px;
 margin-right: 10px;
}
</pre>
<h4>HTML</h4>
<pre class="highlight">
&lt;span class="big-icon"&gt;Icon text goes here&lt;/span&gt;
</pre>
<h4>Here&#8217;s What It Looks Like</h4>
<p><img src="http://www.cardeo.ca/wp-content/uploads/2010/08/Screen-shot-2010-08-05-at-5-Aug-10-11.59.28-PM.png" alt="" title="large-icon" width="192" height="50" class="alignnone size-full wp-image-3354" /></p>
<h4>The Code Explained</h4>
<ul>
<li>We&#8217;ve increased the height of the class to be 48px, so it matches the height of our larger icon.</li>
<li>We&#8217;ve also added a <strong>line-height</strong> of 48px. This will force the our text to center vertically in the layout.</li>
<li>I&#8217;ve also increased our padding-left to 50px to leave enough room for the width of the new icon.</li>
</ul>
<p>It&#8217;s that easy. But what about links? Read on for an explanation of making the icon and text work as a link. </p>
<blockquote class="center"><p><a href="http://codecanyon.net?ref=cardeo"><img src="/images/cc_468x60_v1.gif" width="468" height="60" alt="Code Canyon" /></a></p></blockquote>
<h4>Adding A Link</h4>
<p>There are two ways we can do this. The first would be making the copy a link and leaving the icon an image. The second way would be to make the icon and copy all part of the link. It&#8217;s actually quite easy, it simply depends on where you place your link tag. See below for the two examples:</p>
<h4>Only The Copy Is A Link</h4>
<pre class="highlight">
&lt;span class="icon"&gt;&lt;a href="#"&gt;link copy here&lt;/a&gt;&lt;/span&gt;
</pre>
<h4>The Icon and Copy Are Both A Part Of The Same Link</h4>
<pre class="highlight">
&lt;a href="#"&gt;&lt;span class="icon"&gt;link copy here&lt;/span&gt;&lt;/a&gt;
</pre>
<p>That&#8217;s it, that&#8217;s all. This is a fairly simple technique, but it gives you way better control of the positioning of your icons. If you have any questions, please leave a comment. </p>
<blockquote class="center"><p><a href="http://www.cardeo.ca/demos/css-icons/index.html">View The Demo</a></p></blockquote>
<blockquote class="center"><p><a href="http://www.mediafire.com/?6j4q6j21vz5dbi0">Download The Source Files</a></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.cardeo.ca/2010/best-practices-for-positioning-icons-with-css/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Photoshop To HTML</title>
		<link>http://www.cardeo.ca/2010/photoshop-to-html</link>
		<comments>http://www.cardeo.ca/2010/photoshop-to-html#comments</comments>
		<pubDate>Thu, 22 Apr 2010 16:56:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[ebook]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[psd]]></category>
		<category><![CDATA[rockable-press]]></category>

		<guid isPermaLink="false">http://www.cardeo.ca/?p=2934</guid>
		<description><![CDATA[Are you familar with rockablepress.com? They&#8217;re a book company, from the good people at envato.com, specializing in Web Design books. They just released their latest book titled Photoshop to HTML, which is a guide to taking your website designs from Photoshop to HTML. What&#8217;s Covered Different methods for slicing a PSD. Create semantic mark-up, and [...]]]></description>
			<content:encoded><![CDATA[<p>Are you familar with <a href="https://www.e-junkie.com/ecom/gb.php?cl=12635&#038;c=ib&#038;aff=38173" target="ejejcsingle">rockablepress.com</a>? They&#8217;re a book company, from the good people at <a href="http://envato.com/">envato.com</a>, specializing in Web Design books. They just released their latest book titled <a href="https://www.e-junkie.com/ecom/gb.php?cl=12635&#038;c=ib&#038;aff=38173" target="ejejcsingle">Photoshop to HTML</a>, which is a guide to taking your website designs from Photoshop to HTML.<br />
<span id="more-2934"></span></p>
<blockquote class="center"><p><a href="https://www.e-junkie.com/ecom/gb.php?cl=12635&#038;c=ib&#038;aff=38173" target="ejejcsingle"><img src="/images/photoshop_html_468x60.gif" width="468" height="60" alt="Photoshop to HTML" /></a></p></blockquote>
<h4>What&#8217;s Covered</h4>
<ul>
<li>Different methods for slicing a PSD.</li>
<li>Create semantic mark-up, and learn how this HTML relates to the original PSD.</li>
<li>How to utilize techniques, such as background replacement and sprite generation.</li>
<li>Use custom fonts with Cufon font replacement.</li>
<li>The differences between absolute and relative positioning.</li>
<li>How to compensate for the dreaded Internet Explorer 6.</li>
<li>Take advantage of advanced CSS3 features.</li>
<li>How to take advantage of a variety of helpful browser extensions to expedite your coding.</li>
<li>Utilize the jQuery library to add a touch of interactivity.</li>
</ul>
<h4>Source Files Included</h4>
<p>The book comes in at $29 and also includes all the source HTML, PSD, and CSS files. As well as, 4 hours of walkthrough videos. </p>
<h4>Get A Free Book &amp; Save Some Money</h4>
<p>I just noticed that if you sign up for the <a href="https://www.e-junkie.com/ecom/gb.php?cl=12635&#038;c=ib&#038;aff=38173" target="ejejcsingle">Rockable Press Mailing List</a>, they&#8217;re offering a free download of their <a href="http://rockablepress.com/minibooks/rockstar-personal-branding/">Rockstar Personal Branding</a> eBook. Not to mention, signing up will get you access to discount codes for future book releases. I received an email this morning with a discount for this book. That&#8217;s what gave me the idea to write this post. Anyhow, this is a great resource, at a great price. Make sure you check it out. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.cardeo.ca/2010/photoshop-to-html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Coding an animated news ticker with jquery and CSS</title>
		<link>http://www.cardeo.ca/2010/coding-an-animated-news-ticker-with-jquery-and-css</link>
		<comments>http://www.cardeo.ca/2010/coding-an-animated-news-ticker-with-jquery-and-css#comments</comments>
		<pubDate>Wed, 20 Jan 2010 21:35:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[textotela]]></category>

		<guid isPermaLink="false">http://www.cardeo.ca/?p=2331</guid>
		<description><![CDATA[Alright, about time that I&#8217;m back with a new post! For this tutorial, I&#8217;m going to breakdown creating an animated news ticker using a little jquery and CSS. The tutorial is based on a jquery plugin developed by textotela.co.uk, and I recently built it into the homepage of recork.org. If you head over to textotela.co.uk, [...]]]></description>
			<content:encoded><![CDATA[<p>Alright, about time that I&#8217;m back with a new post! For this tutorial, I&#8217;m going to breakdown creating an animated news ticker using a little jquery and CSS. The tutorial is based on a jquery plugin developed by <a href="http://www.texotela.co.uk/code/jquery/newsticker/">textotela.co.uk</a>, and I recently built it into the homepage of <a href="http://www.recork.org">recork.org</a>. If you head over to textotela.co.uk, you&#8217;ll notice there are some instructions on installing this plugin. The problem is (being a beginner at jquery), I had a hard time filling in all the blanks that are not described on his website. Therefore, I thought I would break it down for beginners to make it easier to understand and install.<br />
<span id="more-2331"></span></p>
<p class="button"><a href="http://www.cardeo.ca/demos/jquery-ticker/">View Demo</a></p>
<h4>What you&#8217;ll need</h4>
<p>Download the jquery source files from <a href="http://github.com/SamWM/jQuery-Plugins/tree/master/newsticker/">github.com</a>. Once you&#8217;ve downloaded the javascript file (<strong>jquery.newsticker.pack.js</strong>), upload it to your server. For the purposes of this demo, let&#8217;s just upload the file to your root folder and keep everyting in the same directory. Also, if you don&#8217;t have jquery on your server, you&#8217;ll need to download it from <a href="http://jquery.com/">jquery.com</a>. Once you download the file, rename it it <strong>jquery.js</strong> and place it in your root directory. </p>
<blockquote class="center"><p><a href="http://codecanyon.net?ref=cardeo"><img src="http://www.cardeo.ca/wp-content/uploads/2010/01/cc_468x60_v3.gif" alt="" title="cc_468x60_v3" width="468" height="60" class="alignnone size-full wp-image-3055" /></a></p></blockquote>
<h4>Setting up the HTML</h4>
<p>Once you&#8217;ve uploaded your files, let&#8217;s create a new HTML file called <strong>index.html</strong>. Inside that file, paste the following code into the <strong><code>&lt;head&gt;</code></strong> of your file:</p>
<pre class="highlight">
<code>&lt;html&gt;
&lt;head&gt;
 &lt;title&gt;ticker&lt;/title&gt;
 &lt;script type="text/javascript" src="jquery.js"&gt;&lt;/script&gt;
 &lt;script type="text/javascript" src="jquery.newsticker.pack.js"&gt;&lt;/script&gt;
 &lt;script type="text/javascript"&gt;
    $(document).ready(function() {
      $("#news").newsticker();
    });
  &lt;/script&gt;
&lt;/head&gt;</code>
</pre>
<p>Now head down to the <strong><code>&lt;body&gt;</code></strong> of your file and insert the following code:</p>
<pre class="highlight">
<code>&lt;body&gt;
&lt;div id="ticker"&gt;
&lt;ul id="news"&gt;
 &lt;li&gt;News item 1&lt;/li&gt;
 &lt;li class="loud"&gt;News item 2&lt;/li&gt;
 &lt;li&gt;News item 3&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;</code>
</pre>
<h4>HTML explained</h4>
<p>These are the main points to keep in mind with the HTML:</p>
<ul>
<li>The wrapping <strong><code>&lt;div id="ticker"&gt;</code></strong> can be used if you&#8217;d like to give your ticker a background, margin, dimensions. The ticker will still work without this <strong><code>&lt;div&gt;</code></strong>, but you&#8217;ll most likely want to leave it in for layout reasons.</li>
<li>Each <strong><code>&lt;li&gt;&lt;/li&gt;</code></strong> refers to one news item. Within the <strong><code>&lt;li&gt;&lt;/li&gt;</code></strong> you can add text, links, etc&#8230; They&#8217;ll appear in the order you enter them, and you can have as many as you like. The one I setup for <a href="http://www.recork.org">recork.org</a> uses 23 different lines.</li>
<li>Once the last item on the list is displayed, it will loop around and start over with the first item.</li>
</ul>
<blockquote class="center"><p><a href="http://themeforest.net?ref=cardeo"><img src="http://www.cardeo.ca/wp-content/uploads/2010/01/tf_468x60_v4.gif" alt="" title="tf_468x60_v4" width="468" height="60" class="alignnone size-full wp-image-3056" /></a></p></blockquote>
<h4>Adding the CSS</h4>
<p>There are a number of ways you can choose to style your ticker. I&#8217;ve setup a few basic layout styles here, but please feel free to play around with it. I&#8217;m going to keep it simple and do all my backgrounds with css. You might want to try using an image for a background, or perhaps add an icon to the left of your ticker. Also, make sure you paste this code into the <strong><code>&lt;head&gt;</code></strong> of <strong>ticker.html</strong>, after the javascript links. </p>
<pre class="highlight">
<code>&lt;style type="text/css"&gt;
#ticker {
 background-color: #ebebeb;
 border: 1px solid #ccc;
 padding: 20px;
}

ul#news {
 list-style: none;
 margin: 0;
 padding: 0;
}

ul#news li {
 margin: 0;
}

ul#news li.loud {
 font-weight: bold;
}
&lt;/style&gt;</code>
</pre>
<h4>CSS explained</h4>
<p>I&#8217;ve tried to keep the CSS here pretty simple. Here&#8217;s a few notes on what I&#8217;ve got going on:</p>
<ul>
<li><strong>#ticker</strong> is the wrapper for the ticker which has a grey background, grey border and is padded 20 pixels.</li>
<li><strong>ul#news</strong> is the unordered list for the ticker. You&#8217;ll want to leave those styles as they are, so there is no unwanted margin or bullet points. If you want bullet points, simply change up the <strong>list-style:</strong> selector to a different value.</li>
<li><strong>ul#news li</strong> are the styles for each individual bullet point. You might want to add some color, or other font styles here.</li>
<li><strong>ul#news li.loud</strong> is a class I setup for news items that you want to stand out more. Adding the class <strong>loud</strong> to your <strong><code>&lt;li&gt;</code></strong> will currently make that item bold.</li>
</ul>
<h4>Summary</h4>
<p>Once you have all your code setup in <strong>index.html</strong>, upload the file to your root directory. At this point, it would also be a good idea to move the CSS to your external stylesheet. I wanted to keep this tutorial straight forward, for beginners, so I left everything in one HTML file. That&#8217;s it. I&#8217;ve shown you how to put together an animated news ticker with a little bit of jquery and CSS. If you have any questions about customizing the ticker further, please feel free to leave them in the comments. Once again, I&#8217;d like to thank <a href="http://www.texotela.co.uk/code/jquery/newsticker/">textotela.co.uk</a> for designing a great plugin. The source files for this tutorial are available from the link below. </p>
<p class="button"><a href="http://www.mediafire.com/?fz0imjyd1yq">Download Source Files</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cardeo.ca/2010/coding-an-animated-news-ticker-with-jquery-and-css/feed</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>O&#8217;Reilly books now available in the Apple App Store</title>
		<link>http://www.cardeo.ca/2009/oreilly-book-now-available-in-the-apple-app-store</link>
		<comments>http://www.cardeo.ca/2009/oreilly-book-now-available-in-the-apple-app-store#comments</comments>
		<pubDate>Sat, 12 Dec 2009 00:37:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Awesome]]></category>
		<category><![CDATA[app-store]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[Apps]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[ipod]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[oreilly]]></category>

		<guid isPermaLink="false">http://www.cardeo.ca/?p=2287</guid>
		<description><![CDATA[I was surfing around the App Store the other day, and to my delight I noticed that O&#8217;Reilly is now offering a number of their titles as iPhone/iPod Apps! I&#8217;ve been a fan of their books for a little while now (currently I&#8217;m reading Twitter API Up and Running), so I was happy to see [...]]]></description>
			<content:encoded><![CDATA[<p>I was surfing around the App Store the other day, and to my delight I noticed that <a href="http://oreilly.com/" target="_blank">O&#8217;Reilly</a> is now offering a number of their titles as iPhone/iPod Apps! I&#8217;ve been a fan of their books for a little while now (currently I&#8217;m reading <a href="http://www.amazon.ca/gp/product/0596154615?ie=UTF8&#038;tag=gettiaweso-20&#038;linkCode=as2&#038;camp=15121&#038;creative=390961&#038;creativeASIN=0596154615" target="_blank">Twitter API Up and Running</a>), so I was happy to see they had made the jump to the App Store.<br />
<span id="more-2287"></span></p>
<h4>Digital vs. Paper</h4>
<p>Now don&#8217;t get me wrong, I like a good hardcopy of a book as well as the next guy. However, for the price tag of $5.99, you can&#8217;t go wrong with picking up the iPod version! If the book turns out to be excellent, then go pick up the hardcopy. If not, you&#8217;ve saved yourself a little bit of cash then can be better spent on something like beer. </p>
<h4>What should I read?</h4>
<p>For my first O&#8217;Reilly App, I decided to go with <a href="http://www.amazon.ca/gp/product/0596805780?ie=UTF8&#038;tag=gettiaweso-20&#038;linkCode=as2&#038;camp=15121&#038;creative=390961&#038;creativeASIN=0596805780">Building iPhone Apps with HTML, CSS, and JavaScript: Making App Store Apps Without Objective-C or Cocoa</a>. I&#8217;ve made it through the first few chapters and so far so good. Once I finish it off, I&#8217;ll be sure to post a review here on the blog. In the meantime, I&#8217;d encourage you to check out O&#8217;Reilly&#8217;s offerings in the App Store. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.cardeo.ca/2009/oreilly-book-now-available-in-the-apple-app-store/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The web design process: part 2</title>
		<link>http://www.cardeo.ca/2009/the-web-design-process-part-2</link>
		<comments>http://www.cardeo.ca/2009/the-web-design-process-part-2#comments</comments>
		<pubDate>Thu, 11 Jun 2009 08:51:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[blueprint]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[grid]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[process]]></category>

		<guid isPermaLink="false">http://cardeo.ca/?p=1727</guid>
		<description><![CDATA[Time for part 2 of 4 in the web design process series. Today I&#8217;m going to cover Photoshop comps, reviewing your goals, and coded comps. Check out the overview below to see all the main steps in the design process. Make sure you check out part 1 in the web design process series. Overview &#187; [...]]]></description>
			<content:encoded><![CDATA[<p>Time for part 2 of 4 in the web design process series. Today I&#8217;m going to cover Photoshop comps, reviewing your goals, and coded comps. Check out the overview below to see all the main steps in the design process.</p>
<p class="block-quote"><b>Make sure you check out <a href="http://cardeo.ca/2009/the-web-design-process-part-1/">part 1</a> in the web design process series.</b></p>
<h4>Overview</h4>
<p>&#187; Defining the end goal<br />
&#187; Navigation planning and sitemap<br />
&#187; Hand-drawn rough layout<br />
&#187; Photoshop comps<br />
&#187; Review comps to ensure the end goal has been met<br />
&#187; Coded comps (alpha)<br />
&#187; Dynamic content integration<br />
&#187; Browser testing<br />
&#187; Launch checklist<br />
&#187; Soft launch (beta)<br />
&#187; Launch and promotion<br />
<span id="more-1727"></span></p>
<h4>Photoshop Comps</h4>
<p>Alright, time to dive into Photoshop and polish up your hand-drawn comp. Before we get to far, I would highly recommend using a grid and/or a CSS framework. I currently use the <a href="http://www.blueprintcss.org/" target="_blank">Blueprint CSS framework</a>, which is a free download. I&#8217;ve also put together a photoshop grid template that will work with blueprint, which you can <a href="http://www.mediafire.com/?znznnmttg3n">download here</a>.</p>
<p>At this point I&#8217;m not going to get into tons of design recommendations. This post is about the process not the design. Once you have created your Photoshop comp, it&#8217;s time to review the comp before you do any coding.</p>
<h4>Review comps to ensure the end goal has been met</h4>
<p>Once you have finished your comp, let&#8217;s run through a little checklist to make sure you are on the right path:</p>
<p>&#187; Did you achieve all the end goals you set up in part 1?<br />
&#187; Is your navigation clear and easy to locate?<br />
&#187; Is your sitemap and hierarchy in tact?</p>
<p>If your answer to any of these is no, you need to go back to the drawing board and create a new comp. Once again, don&#8217;t go with the first comp you come up with. Try a few different ideas until you get to the best concept. If your comps are looking good and meeting all your goals, it&#8217;s time to start some coding.</p>
<h4>Coded comps (alpha)</h4>
<p>For me the coded comps, or alpha, phase includes the cutting up of your photoshop file, and your CSS and HTML coding. Make sure you start with your HTML file, ensuring your hierarchy is setup properly. Next move onto your CSS stylesheet. I don&#8217;t add any dynamic content at this point, like javascript. My preference is to get the frame of the pages up and running, test them, then to start adding the stuff like javascript, back-end tie-ins, etc&#8230;</p>
<p>If you have any dynamic content to add, I usually just leave an area (perhaps a box) in the coded layout with a reference to what is supposed to go there. Many times you might be working with a developer for the back-end stuff, so leaving notes in your layout and in the code are a good way to keep the process moving smoothly. Once you have finished off doing all your HTML and CSS coding, it&#8217;s time to move onto the dynamic content integration.</p>
<p>This is where we stop for today. I hope everyone is finding this series useful so far. Check back tomorrow for part 3 in the web design process.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cardeo.ca/2009/the-web-design-process-part-2/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CSS tips round-up</title>
		<link>http://www.cardeo.ca/2009/css-tips-round-up</link>
		<comments>http://www.cardeo.ca/2009/css-tips-round-up#comments</comments>
		<pubDate>Mon, 23 Mar 2009 17:24:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://cardeo.ca/?p=1483</guid>
		<description><![CDATA[Below is a list of CSS tips I&#8217;ve picked up over the past couple days. Most of them are from one of my favorite web design blogs: cssglobe.com. Here you go: &#187;]]></description>
			<content:encoded><![CDATA[<p>Below is a list of CSS tips I&#8217;ve picked up over the past couple days. Most of them are from one of my favorite web design blogs: <a href="http://cssglobe.com" target="_blank">cssglobe.com</a>. Here you go:</p>
<p>&#187; <a href="http://www.webair.it/blog/2009/03/23/16-easy-css-techniques-that-simplify-the-webdesigners-life/ target="_blank">16 easy CSS techniques that simplify the web designers life</a></p>
<p>&#187; <a href="http://cssglobe.com/post/1392/8-premium-one-line-css-tips" target="_blank">8 premium, one-line CSS tips</a></p>
<p>&#187; <a href="http://www.graphicfetish.com/28-fantastic-generators-for-easier-web-designing/" target="_blank">28 fantastic generators for easier web design</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cardeo.ca/2009/css-tips-round-up/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

