<?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</title>
	<atom:link href="http://www.cardeo.ca/feed" rel="self" type="application/rss+xml" />
	<link>http://www.cardeo.ca</link>
	<description>Ramblings on web design and social media</description>
	<lastBuildDate>Mon, 15 Mar 2010 18:54:03 +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>500 Business Cards Winner Announced</title>
		<link>http://www.cardeo.ca/2010/500-business-cards-winner-announced</link>
		<comments>http://www.cardeo.ca/2010/500-business-cards-winner-announced#comments</comments>
		<pubDate>Mon, 15 Mar 2010 18:54:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[business-cards]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[giveaway]]></category>
		<category><![CDATA[uprinting]]></category>

		<guid isPermaLink="false">http://www.cardeo.ca/?p=2836</guid>
		<description><![CDATA[The winner of 500 business cards from UPrinting.com is Philip Post. Thanks to everyone who entered. Stay tuned for more great giveaways from Cardeo.ca and UPrinting.com.
]]></description>
			<content:encoded><![CDATA[<p>The winner of 500 business cards from <a href="http://www.uprinting.com">UPrinting.com</a> is Philip Post. Thanks to everyone who entered. Stay tuned for more great giveaways from Cardeo.ca and UPrinting.com.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cardeo.ca/2010/500-business-cards-winner-announced/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Creating Text Columns With CSS3</title>
		<link>http://www.cardeo.ca/2010/creating-text-columns-with-css3</link>
		<comments>http://www.cardeo.ca/2010/creating-text-columns-with-css3#comments</comments>
		<pubDate>Sun, 14 Mar 2010 07:52:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[column-count]]></category>
		<category><![CDATA[copy]]></category>
		<category><![CDATA[css3]]></category>

		<guid isPermaLink="false">http://www.cardeo.ca/?p=2819</guid>
		<description><![CDATA[The recommended line length for a paragraph is generally 45-75 characters. With ever-growing monitor sizes, it is a continuing challenge for web designers to create readable copy. In this tutorial, I&#8217;ll show you how to use the CSS3 column-count property to create text columns on the fly.

Live Demo
Browser Support
Currently these styles are supported by Safari, [...]]]></description>
			<content:encoded><![CDATA[<p>The recommended line length for a paragraph is generally 45-75 characters. With ever-growing monitor sizes, it is a continuing challenge for web designers to create readable copy. In this tutorial, I&#8217;ll show you how to use the CSS3 <strong>column-count</strong> property to create text columns on the fly.<br />
<span id="more-2819"></span></p>
<p class="button"><a href="http://cardeo.ca/demos/column-count/">Live Demo</a></p>
<h4>Browser Support</h4>
<p>Currently these styles are supported by Safari, Firefox, Chrome, and Camino.</p>
<h4>Here&#8217;s What The CSS Looks Like</h4>
<p>The CSS is actually pretty simple for this technique. We simply have to use the <strong>column-count</strong> property to set our columns. For the value, enter the number of columns you would like, in this case 2. You can also control the width of the column gap using the <strong>column-gap</strong> property. All you need to do is declare a width value in pixels, in this case 40px. </p>
<pre>
div {
 -moz-column-count: 2;
 -moz-column-gap: 40px;
 -webkit-column-count: 2;
 -webkit-column-gap: 40px;
}
</pre>
<h4>Adding The HTML</h4>
<p>The HTML for this example is also simple. Just paste all your text within a <strong><code>&lt;div&gt;&lt;/div&gt;</code></strong>. Make sure there are no extra line breaks or spaces in your copy. Post it all in one big paragraph.</p>
<pre style="white-space: pre-wrap;">
<code>&lt;div&gt;At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.&lt;/div&gt;</code>
</pre>
<h4>Here&#8217;s What It Looks Like</h4>
<p>The final output should be the above paragraph, divided into two columns. Check out the <a href="http://cardeo.ca/demos/column-count/">live demo</a> to see the results. </p>
<h4>Support Files</h4>
<p>That’s it, that’s all. Check out the live demo and download the source files below.</p>
<p class="button"><a href="http://cardeo.ca/demos/column-count/">Live Demo</a></p>
<p class="button"><a href="http://www.mediafire.com/?1kmfuntbinz">Download Source Files</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cardeo.ca/2010/creating-text-columns-with-css3/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using CSS3 font-face To Add Custom Fonts To Your Website</title>
		<link>http://www.cardeo.ca/2010/using-css3-font-face-to-add-custom-fonts-to-your-website</link>
		<comments>http://www.cardeo.ca/2010/using-css3-font-face-to-add-custom-fonts-to-your-website#comments</comments>
		<pubDate>Fri, 12 Mar 2010 23:45:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[aller-display]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[font-face]]></category>
		<category><![CDATA[type]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://www.cardeo.ca/?p=2803</guid>
		<description><![CDATA[One of the biggest features in CSS3 is the ability to use custom fonts in your web designs. In this tutorial, I&#8217;ll show you how to do just that using the free font Aller Display. Once you have downloaded the file, upload it to your server and note the location.

Live Demo
Browser Support
Currently these styles are [...]]]></description>
			<content:encoded><![CDATA[<p>One of the biggest features in CSS3 is the ability to use custom fonts in your web designs. In this tutorial, I&#8217;ll show you how to do just that using the free font <a href="http://www.fontsquirrel.com/fonts/Aller">Aller Display</a>. Once you have downloaded the file, upload it to your server and note the location.<br />
<span id="more-2803"></span></p>
<p class="button"><a href="http://www.cardeo.ca/demos/font-face/">Live Demo</a></p>
<h4>Browser Support</h4>
<p>Currently these styles are supported by Safari, Firefox, Chrome, and Opera.</p>
<h4>Here&#8217;s What The CSS Looks Like</h4>
<p>The first step is to setup the <strong>@font-face</strong> selector with the font you want to use. For this example, I&#8217;m using the free font <strong>Aller Display</strong>. The <strong>font-family</strong> property declares the name/value for your custom font. The <strong>src</strong> property is the link to the font file on your server, which you have already uploaded.  </p>
<pre>
@font-face {
 font-family: aller-display;
 src: url('aller-display.ttf');
}
</pre>
<p>Now we&#8217;ll setup it up so every <strong><code>&lt;div&gt;</code></strong> in your document will use Aller Display. Make sure the <strong>font-family</strong> value matches the one you setup under the <strong>@font-face</strong> selector. In this case it is <strong>aller-display</strong>.</p>
<pre>
@font-face {
 font-family: aller-display;
 src: url('aller-display.ttf');
}

div {
 font-family: aller-display;
 font-size: 2em;
}
</pre>
<h4>Adding the HTML</h4>
<p>The last thing we need to do is add the HTML, which is pretty basic.</p>
<pre>
<code>&lt;div&gt;this is a custom font named aller display&lt;/div&gt;</code>
</pre>
<h4>Here&#8217;s What It Looks Like</h4>
<p><img src="http://www.cardeo.ca/wp-content/uploads/2010/03/Screen-shot-2010-03-12-at-12-Mar-10-3.32.23-PM.png" alt="" title="aller-display-font-face" width="316" height="86" class="alignnone size-full wp-image-2805" /></p>
<h4>A Word On Copyright</h4>
<p>Make sure you check the license for a font before you use it. Many fonts are not currently licensed for web use. The safest policy is to just use free fonts. There&#8217;s a great collection over at <a href="http://www.dafont.com/">dafont.com</a>.</p>
<h4>Support Files</h4>
<p>That&#8217;s it, that&#8217;s all. Check out the live demo and download the source files below. </p>
<p class="button"><a href="http://www.cardeo.ca/demos/font-face/">Live Demo</a></p>
<p class="button"><a href="http://www.mediafire.com/?4mtzg4d0mt2">Download Source Files</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cardeo.ca/2010/using-css3-font-face-to-add-custom-fonts-to-your-website/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding An Outline To Your Text Using the CSS3 text-stroke Property</title>
		<link>http://www.cardeo.ca/2010/adding-an-outline-to-your-text-using-the-css3-text-stroke-property</link>
		<comments>http://www.cardeo.ca/2010/adding-an-outline-to-your-text-using-the-css3-text-stroke-property#comments</comments>
		<pubDate>Wed, 03 Mar 2010 23:13:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[property]]></category>
		<category><![CDATA[text-stroke]]></category>
		<category><![CDATA[type]]></category>

		<guid isPermaLink="false">http://www.cardeo.ca/?p=2787</guid>
		<description><![CDATA[In this tutorial I&#8217;ll show you how to add an outline, or stroke, to your text using the CSS3 text-stroke property. 
Browser Support
Currently, these styles are only supported by Safari and Chrome.
Here&#8217;s What The CSS Looks Like
The first step is to declare a text color, I&#8217;ve picked red here. Next, we use the text-stroke property [...]]]></description>
			<content:encoded><![CDATA[<p>In this tutorial I&#8217;ll show you how to add an outline, or stroke, to your text using the CSS3 <strong>text-stroke</strong> property. <span id="more-2787"></span></p>
<h4>Browser Support</h4>
<p>Currently, these styles are only supported by Safari and Chrome.</p>
<h4>Here&#8217;s What The CSS Looks Like</h4>
<p>The first step is to declare a text color, I&#8217;ve picked red here. Next, we use the <strong>text-stroke</strong> property to assign a color (black) and weight (1px). For this example, I&#8217;ve created a class called <strong>.stroke</strong>.</p>
<pre>
.stroke {
 color: #c00; /* text color */
 -webkit-text-stroke: 1px #000; /* stroke color and weight */
}
</pre>
<h4>Here&#8217;s What It Looks Like</h4>
<p><img src="http://www.cardeo.ca/wp-content/uploads/2010/03/Screen-shot-2010-03-02-at-2-Mar-10-5.33.53-PM.png" alt="" title="text-stroke-red" width="395" height="113" class="alignnone size-full wp-image-2789" /></p>
<h4>The text-stroke Property Explained</h4>
<p>Here&#8217;s a breakdown of the values for the <strong>text-stroke</strong> property.</p>
<ul>
<li>The first value is the stroke weight measured in pixels</li>
<li>The second value is the stroke color</li>
</ul>
<h4>Using Transparency</h4>
<p>If you&#8217;d like to make the text fill transparent, you can do so by using the <strong>text-fill-color</strong> property. For this example, I created a second class called <strong>.stroke-transparent</strong>.</p>
<pre>
.stroke-transparent {
 -webkit-text-stroke: 1px #000;
 -webkit-text-fill-color: transparent;
}
</pre>
<h4>Here&#8217;s What It Looks Like</h4>
<p><img src="http://www.cardeo.ca/wp-content/uploads/2010/03/Screen-shot-2010-03-02-at-2-Mar-10-5.34.01-PM.png" alt="" title="text-stroke-transparent" width="405" height="90" class="alignnone size-full wp-image-2790" /></p>
<h4>Support Files</h4>
<p>That&#8217;s it, that&#8217;s all. Check out the <a href="http://cardeo.ca/demos/text-stroke">Live Demo</a> to see it in action, or <a href="http://www.mediafire.com/?kykiyjx5o33">Download</a> the source files. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.cardeo.ca/2010/adding-an-outline-to-your-text-using-the-css3-text-stroke-property/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Enter To Win 500 Business Cards From UPrinting.com</title>
		<link>http://www.cardeo.ca/2010/enter-to-win-500-business-cards-from-uprinting-com</link>
		<comments>http://www.cardeo.ca/2010/enter-to-win-500-business-cards-from-uprinting-com#comments</comments>
		<pubDate>Wed, 03 Mar 2010 00:44:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[business-cards]]></category>
		<category><![CDATA[contest]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[giveaway]]></category>
		<category><![CDATA[uprinting]]></category>

		<guid isPermaLink="false">http://www.cardeo.ca/?p=2783</guid>
		<description><![CDATA[Who needs business cards? Enter to win 500 Business Cards from my sponsor, UPrinting.com. Shipping is free! To enter, please leave a comment below explaining what you would do with the cards if you win.

How To Enter

Leave a comment explaining what you would do with the cards if you win
Deadline to enter is March 14th, [...]]]></description>
			<content:encoded><![CDATA[<p>Who needs business cards? Enter to win <a href="http://www.uprinting.com/Business-Cards.html">500 Business Cards</a> from my sponsor, <a href="http://www.uprinting.com/promotional-printing-discount.html">UPrinting.com</a>. Shipping is free! To enter, please leave a comment below explaining what you would do with the cards if you win.<br />
<span id="more-2783"></span></p>
<h4>How To Enter</h4>
<ul>
<li>Leave a comment explaining what you would do with the cards if you win</li>
<li>Deadline to enter is March 14th, winner picked March 15th</li>
<li>Open to residents of the USA only</li>
</ul>
<h4>Business Card Specs</h4>
<ul>
<li>500 Business Cards</li>
<li>Pick your size: 2 x 3.5”, 2 x 3”, 2 x 2” (square card) or 1.5 x 3.5” (slim card)</li>
<li>Pick your paper: 14 pt gloss cardstock, 14 pt matte cardstock, or 13 pt recycled uncoated cardstock</li>
<li>Other: Full Color Both Sides; Offset Press; 3 Business Day Printing</li>
<li>FREE UPS Ground Shipping</li>
</ul>
<h4>UPrinting.com Links of Interest</h4>
<ul>
<li><a href="http://www.uprinting.com/Business-Cards.html">Business Cards Online</a></li>
<li><a href="http://www.uprinting.com/promotional-printing-discount.html">Promotional Printing</a></li>
</ul>
<p><img src="http://www.cardeo.ca/wp-content/uploads/2010/03/business_card_up.png" alt="" title="business_card_up" width="428" height="246" class="alignnone size-full wp-image-2784" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cardeo.ca/2010/enter-to-win-500-business-cards-from-uprinting-com/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Creating a Fading Link Transition with CSS3</title>
		<link>http://www.cardeo.ca/2010/creating-a-fading-link-transition-with-css3</link>
		<comments>http://www.cardeo.ca/2010/creating-a-fading-link-transition-with-css3#comments</comments>
		<pubDate>Tue, 02 Mar 2010 01:18:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[fade]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[transition]]></category>

		<guid isPermaLink="false">http://www.cardeo.ca/?p=2729</guid>
		<description><![CDATA[Thanks to CSS3, Flash is getting more and more unnecessary. Can&#8217;t say I&#8217;m sorry, as I hate actionscript. In this tutorial I&#8217;ll show you how to create a fading link transition, on mouse over, with CSS3.

Browser Support
Currently, these styles are only supported by Safari, Chrome, Firefox, and Opera. 
Here&#8217;s What the CSS Looks Like
First of [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks to CSS3, Flash is getting more and more unnecessary. Can&#8217;t say I&#8217;m sorry, as I hate actionscript. In this tutorial I&#8217;ll show you how to create a fading link transition, on mouse over, with CSS3.<br />
<span id="more-2729"></span></p>
<h4>Browser Support</h4>
<p>Currently, these styles are only supported by Safari, Chrome, Firefox, and Opera. </p>
<h4>Here&#8217;s What the CSS Looks Like</h4>
<p>First of all, we&#8217;re going to setup a regular link as we always would. Second, we&#8217;re going to use the <strong>transition</strong> property to add the fading. </p>
<pre>
a {
 color: #000;
 -webkit-transition: color 1s ease-in; /*safari and chrome */
 -moz-transition: color 1s ease-in; /* firefox */
 -o-transition: color 1s ease-in; /* opera */
}

a:hover {
 color: #c00;
}
</pre>
<h4>The Transition Property Explained</h4>
<p>Here&#8217;s a breakdown of the values for the <strong>transition</strong> property:</p>
<ol>
<li>The first value refers to property to be transitioned, in this case <strong>color</strong></li>
<li>The second value controls the duration, in this case one second.</li>
<li>the third value controls the type of transition, in this case <strong>fade-in</strong></li>
</ol>
<blockquote><p>Interested in additional transitions? Read more about the <a href="http://www.w3.org/TR/css3-transitions/#transition-timing-function_tag">different types of transitions</a> over at <a href="http://www.w3.org">w3.org</a>.</p></blockquote>
<h4>Fading Multiple Properties</h4>
<p>It&#8217;s also important to note that you can have multiple transitions on the same selector. For example, if you want to to have your background and link colors both fade, you can do it. Simply break apart your properties, and list your declarations as I&#8217;ve done below. By the way, I&#8217;m setting up a new class for this demo called <strong>.multiple</strong>, and I&#8217;m only going to include the Safari (webkit) properties.</p>
<pre>
.multiple a {
 color: #000;
 background: #ccc;
 padding: 5px;
 -webkit-transition-property: color, background;
 -webkit-transition-duration: 1s, 1s;
 -webkit-transition-timing-function: linear, ease-in;
}

.multiple a:hover {
 color: #fff;
 background: #c00;
}
</pre>
<h4>Here&#8217;s What it Looks Like</h4>
<p>Check out the <a href="http://cardeo.ca/demos/css3-link-transition/">live demo</a> to see the transition in action. Otherwise, feel free to <a href="http://www.mediafire.com/?mmdznwntlx1">download</a> the source files and play around with them.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cardeo.ca/2010/creating-a-fading-link-transition-with-css3/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Create A Custom Border Using CSS3 border-image</title>
		<link>http://www.cardeo.ca/2010/how-to-create-a-custom-border-using-css3-border-image</link>
		<comments>http://www.cardeo.ca/2010/how-to-create-a-custom-border-using-css3-border-image#comments</comments>
		<pubDate>Thu, 25 Feb 2010 21:56:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[border-image]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[gradient]]></category>

		<guid isPermaLink="false">http://www.cardeo.ca/?p=2703</guid>
		<description><![CDATA[In this tutorial I&#8217;ll show you how to use the CSS3 border-image property to create a custom border. This new element allows you to use an image for your border. In my example, I&#8217;ll show you how to create a 5px wide gradient border around an image.

Browser Support
Currently, the border-image property works in Safari, Firefox, [...]]]></description>
			<content:encoded><![CDATA[<p>In this tutorial I&#8217;ll show you how to use the CSS3 border-image property to create a custom border. This new element allows you to use an image for your border. In my example, I&#8217;ll show you how to create a 5px wide gradient border around an image.<br />
<span id="more-2703"></span></p>
<h4>Browser Support</h4>
<p>Currently, the <strong>border-image</strong> property works in Safari, Firefox, and Chrome.</p>
<h4>Creating the image</h4>
<p>The most complicated part of this tutorial is creating the image that we&#8217;ll use for our border. At this point, feel free to <a href="http://www.mediafire.com/?k4wu2dzk2jm">download</a> the tutorial source files and code along. If you&#8217;d like to create your own image, open Photoshop and create a 15px x 15px document. </p>
<ul>
<li>Create a new layer</li>
<li>Using guides, divide the canvas into three horizontal and vertical 5 pixel columns</li
<li>Fill the entire canvas with a gradient of your choice</li>
<li>Delete the 5&#215;5 pixel square in the center of the canvas</li>
<li>Turn off the background layer (making the center square transparent)</li>
<li>Save for web, choose PNG24, make sure transparency is checked and set the matte to none</li>
</ul>
<p><strong>Your final image should look something like this. Keep in mind this is zoomed in to 500%</strong></p>
<p><a href="http://www.cardeo.ca/wp-content/uploads/2010/02/Screen-shot-2010-02-19-at-19-Feb-10-10.27.52-PM.png"><img src="http://www.cardeo.ca/wp-content/uploads/2010/02/Screen-shot-2010-02-19-at-19-Feb-10-10.27.52-PM.png" alt="" title="border image" width="78" height="75" class="alignnone size-full wp-image-2704" /></a></p>
<h4>Coding the CSS and HTML</h4>
<p>Now that we&#8217;ve created our image, it&#8217;s time to code the CSS and HTML to get the border working. Here&#8217;s what the CSS looks like:</p>
<pre>
.red-border {
 border: 5px solid #c00; /* optional for graceful degradation */
 float: left;
 -webkit-border-radius: 3px;
 -webkit-border-image: url(border.png) 5 5 5 5 stretch;
 -moz-border-radius: 3px;
 -moz-border-radius: url(border.png) 5 5 5 5 stretch;
}
</pre>
<p><strong>Here&#8217;s what the HTML looks like:</strong></p>
<pre>
<code>&lt;div class="red-border"&gt;&lt;img src="image.jpg" width="150" height="150" alt="image" /&gt;&lt;/div&gt;</code>
</pre>
<h4>Here&#8217;s What it Looks Like</h4>
<p>Note the red gradient png has been stretched to fit around my image. </p>
<p><a href="http://www.cardeo.ca/wp-content/uploads/2010/02/Screen-shot-2010-02-19-at-19-Feb-10-10.35.12-PM.png"><img src="http://www.cardeo.ca/wp-content/uploads/2010/02/Screen-shot-2010-02-19-at-19-Feb-10-10.35.12-PM.png" alt="" title="border image 2" width="163" height="161" class="alignnone size-full wp-image-2707" /></a></p>
<h4>Live Demo</h4>
<p>That&#8217;s it that&#8217;s all. <a href="http://www.cardeo.ca/demos/css3-border-image/">View the live demo</a> or <a href="http://www.mediafire.com/?k4wu2dzk2jm">download</a> the tutorial source files. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.cardeo.ca/2010/how-to-create-a-custom-border-using-css3-border-image/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Creating Slick Buttons With CSS3 Multiple Backgrounds</title>
		<link>http://www.cardeo.ca/2010/creating-slick-buttons-with-css3-multiple-backgrounds</link>
		<comments>http://www.cardeo.ca/2010/creating-slick-buttons-with-css3-multiple-backgrounds#comments</comments>
		<pubDate>Mon, 22 Feb 2010 20:56:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[button]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[multiple-backgrounds]]></category>

		<guid isPermaLink="false">http://www.cardeo.ca/?p=2676</guid>
		<description><![CDATA[In this tutorial I&#8217;m going to show you how to make a slick button using CSS3 multiple backgrounds. The background property works the same as CSS2, with the exception of allowing you to add additional background images. If you&#8217;d like to code along, Download the source files.

Browser Support
Currently, multiple backgrounds are only supported by Safari [...]]]></description>
			<content:encoded><![CDATA[<p>In this tutorial I&#8217;m going to show you how to make a slick button using <strong>CSS3 multiple backgrounds</strong>. The background property works the same as CSS2, with the exception of allowing you to add additional background images. If you&#8217;d like to code along, <a href="http://www.mediafire.com/?omgyeowlzwm">Download</a> the source files.<br />
<span id="more-2676"></span></p>
<h4>Browser Support</h4>
<p>Currently, <strong>multiple backgrounds</strong> are only supported by Safari and Chrome.</p>
<h4>The Button Images</h4>
<p>We&#8217;re going to need to create 3 images for our button. A left cap, a right cap, and a middle which we will repeat. The repeat will allow us to stretch the width of the button to fit our button text. Here&#8217;s what the images look like. </p>
<p><strong>Left</strong><br />
<a href="http://www.cardeo.ca/wp-content/uploads/2010/02/left.gif"><img src="http://www.cardeo.ca/wp-content/uploads/2010/02/left.gif" alt="" title="left" width="20" height="40" class="alignnone size-full wp-image-2678" /></a></p>
<p><strong>Middle</strong><br />
<a href="http://www.cardeo.ca/wp-content/uploads/2010/02/middle.gif"><img src="http://www.cardeo.ca/wp-content/uploads/2010/02/middle.gif" alt="" title="middle" width="10" height="40" class="alignnone size-full wp-image-2680" /></a></p>
<p><strong>Right</strong><br />
<a href="http://www.cardeo.ca/wp-content/uploads/2010/02/right.gif"><img src="http://www.cardeo.ca/wp-content/uploads/2010/02/right.gif" alt="" title="right" width="20" height="40" class="alignnone size-full wp-image-2681" /></a></p>
<h4>Here&#8217;s What the CSS Looks Like</h4>
<p>The below styles are the bare minimum you require to get this working. An important thing to note is the order of the images in the background property. The order should be <strong>left</strong>, <strong>right</strong>, then <strong>middle</strong>. The first declared image is the top, the last is the bottom.</p>
<pre>
.button {
 <strong>background: url(left.jpg) top left no-repeat,
 url(left.jpg) top left no-repeat,
 url(middle.jpg) top center repeat-x;
 float: left;
 height: 40px;</strong>
}
</pre>
<h4>Here&#8217;s What the HTML Looks Like</h4>
<p>The HTML for this button is actually quite easy to code. Simply create a new <strong><code>&lt;div&gt;</code></strong> using the <strong>.button</strong> class. Enter your button text after the <strong><code>&lt;div&gt;</code></strong> tag, then close it. </p>
<pre>
<code>&lt;div class="button"&gt;Hello this is my button&lt;/div&gt;</code>
</pre>
<h4>Here&#8217;s What it Looks Like</h4>
<p>This is what the button should look like with only the essential styles defined. </p>
<p><a href="http://www.cardeo.ca/wp-content/uploads/2010/02/Screen-shot-2010-02-18-at-18-Feb-10-10.47.17-PM.png"><img src="http://www.cardeo.ca/wp-content/uploads/2010/02/Screen-shot-2010-02-18-at-18-Feb-10-10.47.17-PM.png" alt="" title="multiple background button" width="166" height="53" class="alignnone size-full wp-image-2684" /></a></p>
<h4>Adding a Few More Styles</h4>
<p>Let&#8217;s add a few more styles to clean up the button formating.</p>
<pre>
.button {
 background: url(left.jpg) top left no-repeat,
 url(left.jpg) top left no-repeat,
 url(middle.jpg) top center repeat-x;
 float: left;
 height: 40px;
 <strong>line-height: 40px; /* centers vertically */
 padding-left: 10px;
 padding-right: 10px;
}

.button a {
 color: #fff;
 text-decoration: none;
}

.button a:hover {
 color: #ccc;
 text-decoration: none;
}</strong>
</pre>
<p><strong>Now let&#8217;s add the <strong><code>&lt;a href&gt;</code></strong> tag to our button text</strong></p>
<pre>
<code>&lt;div class="button"&gt;&lt;a href="http://yourwebsite.com"&gt;Hello this is my button&lt;/a&gt;&lt;/div&gt;</code>
</pre>
<h4>Here&#8217;s What it Looks Like</h4>
<p>Now that we&#8217;ve fixed the button formatting, by adding a few more styles, this is what it should look like in your browser. </p>
<p><a href="http://www.cardeo.ca/wp-content/uploads/2010/02/Screen-shot-2010-02-18-at-18-Feb-10-11.02.19-PM.png"><img src="http://www.cardeo.ca/wp-content/uploads/2010/02/Screen-shot-2010-02-18-at-18-Feb-10-11.02.19-PM.png" alt="" title="multiple backgrounds button 2" width="182" height="47" class="alignnone size-full wp-image-2690" /></a></p>
<h4>LIve Demo</h4>
<p>That&#8217;s it, that&#8217;s all. <a href="http://www.cardeo.ca/demos/css3-multiple-bgs/">View the live demo</a> or <a href="http://www.mediafire.com/?omgyeowlzwm">download</a> the tutorial source files. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.cardeo.ca/2010/creating-slick-buttons-with-css3-multiple-backgrounds/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Using The CSS3 box-shadow Property</title>
		<link>http://www.cardeo.ca/2010/using-the-css3-box-shadow-selector</link>
		<comments>http://www.cardeo.ca/2010/using-the-css3-box-shadow-selector#comments</comments>
		<pubDate>Fri, 19 Feb 2010 04:20:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[box-shadow]]></category>
		<category><![CDATA[css3]]></category>

		<guid isPermaLink="false">http://www.cardeo.ca/?p=2590</guid>
		<description><![CDATA[I recently published a post on the text-shadow property. The box-shadow property is quite similar, and easy to build into your layout. In this tutorial, I&#8217;ll show you how to add a shadow to a box only using a little CSS3.

Browser Support
Currently, the text-shadow property works in Safari, Firefox, Opera, and Chrome.
Adding a shadow to [...]]]></description>
			<content:encoded><![CDATA[<p>I recently published a post on the <strong>text-shadow</strong> property. The <strong>box-shadow</strong> property is quite similar, and easy to build into your layout. In this tutorial, I&#8217;ll show you how to add a shadow to a box only using a little CSS3.<br />
<span id="more-2590"></span></p>
<h4>Browser Support</h4>
<p>Currently, the <strong>text-shadow</strong> property works in Safari, Firefox, Opera, and Chrome.</p>
<h4>Adding a shadow to a box</h4>
<p>A shadow is added to a box using the <strong>box-shadow</strong> property. Just like the <strong>text-shadow</strong> property, the first pixel value controls the <strong>horizontal offset</strong>, the second controls the <strong>vertical offset</strong>, and the third controls the <strong>blur</strong>. The fourth value is the <strong>shadow color</strong>, which is set using a hex number.</p>
<p><strong>Here&#8217;s what the CSS looks like</strong></p>
<pre>
.box {
 color: #fff;
 <strong>box-shadow: 5px 5px 5px #000;
 -moz-box-shadow: 5px 5px 5px #000;
 -webkit-box-shadow: 5px 5px 5px #000;</strong>
 background-color: #c06;
 padding: 5px;
}
</pre>
<h4>Here&#8217;s what it looks like</h4>
<p>This example shows a traditional shadow, offset to the bottom left. I also inserted a couple additional styles to fill out the box. </p>
<p style="-webkit-box-shadow: 5px 5px 5px #000;-moz-box-shadow: 5px 5px 5px #000;background-color:#c06;padding:5px;color:#fff;">This is a box with a shadow</p>
<h4>Reversing the shadow</h4>
<p>If you&#8217;d like to reverse the shadow, and have it display top-left, you can do so with the following CSS code.</p>
<p><strong>Here&#8217;s what the CSS looks like</strong></p>
<pre>
.box-two {
 color: #fff;
 <strong>box-shadow: -5px -5px 5px #000;
 -moz-box-shadow: -5px -5px 5px #000;
 -webkit-box-shadow: -5px -5px 5px #000;</strong>
 background-color: #c06;
 padding: 5px;
}
</pre>
<h4>Here&#8217;s what it looks like</h4>
<p>Using negative values, it is easy to reverse the shadow. </p>
<p style="-webkit-box-shadow: -5px -5px 5px #000;-moz-box-shadow: -5px -5px 5px #000;background-color:#c06;padding:5px;color:#fff;">This is a box with a shadow</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cardeo.ca/2010/using-the-css3-box-shadow-selector/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cardeo Mailing List</title>
		<link>http://www.cardeo.ca/2010/cardeo-mailing-list</link>
		<comments>http://www.cardeo.ca/2010/cardeo-mailing-list#comments</comments>
		<pubDate>Wed, 17 Feb 2010 08:41:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Awesome]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[list]]></category>

		<guid isPermaLink="false">http://www.cardeo.ca/?p=2670</guid>
		<description><![CDATA[Cardeo now has a email mailing list. Sign up to qualify for exclusive content, contests, new iPhone App announcements, discounts on ebook &#38; apps, and much more. If you have any questions, please let me know.

Sign Up for the Cardeo Mailing List
]]></description>
			<content:encoded><![CDATA[<p>Cardeo now has a email mailing list. <a href="http://www.cardeo.ca/lists/?p=subscribe&#038;id=1">Sign up</a> to qualify for exclusive content, contests, new iPhone App announcements, discounts on ebook &amp; apps, and much more. If you have any questions, please let me know.<br />
<span id="more-2670"></span></p>
<p class="button"><a href="http://www.cardeo.ca/lists/?p=subscribe&#038;id=1">Sign Up for the Cardeo Mailing List</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cardeo.ca/2010/cardeo-mailing-list/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
