<?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>CssTemplateHeaven &#187; Articles/Tutorials</title>
	<atom:link href="http://www.csstemplateheaven.com/category/articlestutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.csstemplateheaven.com</link>
	<description></description>
	<lastBuildDate>Wed, 25 Jan 2012 22:19:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Pure CSS3 Logo</title>
		<link>http://www.csstemplateheaven.com/2010/02/pure-css3-logo/</link>
		<comments>http://www.csstemplateheaven.com/2010/02/pure-css3-logo/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 23:53:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles/Tutorials]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[logo]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://www.csstemplateheaven.com/?p=349</guid>
		<description><![CDATA[There are a lot of cool features in CSS3 and in this example I am going to show you how you can create a decent header with a logo using only H1 and CSS. There are four features we are going to use: Rounded Corners Box Shadow Text Shadow Gradients Unfortunately IE does not support any of these yet, but it looks very nice in FireFox and other good browsers [...]]]></description>
			<content:encoded><![CDATA[<p>There are a lot of cool features in CSS3 and in this example I am going to show you how you can create a decent header with a logo using only H1 and CSS. There are four features we are going to use:</p>
<ul>
<li>Rounded Corners</li>
<li>Box Shadow</li>
<li>Text Shadow</li>
<li>Gradients</li>
</ul>
<p>Unfortunately IE does not support any of these yet, but it looks very nice in FireFox and other good browsers supporting CSS3. Take a look at <a title="css3 logo example" href="http://www.csstemplateheaven.com/demo/css3/logo/css3_logo.html"><strong>this example</strong></a> (right click to view the source code)</p>
<p>As you can see we have only used the h1 with two span tags. The first thing we can look at is the rounded corners (a really great feature).</p>
<blockquote><p>-moz-border-radius: 8px;<br />
-webkit-border-radius: 8px;</p></blockquote>
<p>(Moz is for mozilla (FireFox) while webkit is for Chrome and Safari)</p>
<p>We have set the radius to 8px for our header, this gives us some nice rounded corners. Then we need to create a drop shadow, this is done with box shadow like this:</p>
<blockquote><p>box-shadow: #333 10px 10px 10px;<br />
-moz-box-shadow: #333 10px 10px 10px;<br />
-webkit-box-shadow: #333 10px 10px 10px;</p></blockquote>
<p>As you can see there are four different values here. The first is the color and the three others are the size and position of our shadow. Change the different values to see how it affects the shadow.</p>
<p>That&#8217;s the CSS3 stuff we need for our main header. Now we are going to create the logo inside the header. We do this by adding two span tags which wrap around &#8220;css3&#8243; and &#8220;logo&#8221;</p>
<p>On the css id we only need rouned corners on the left top and left bottom like this:</p>
<blockquote><p>-moz-border-radius-topleft: 10px;<br />
-moz-border-radius-bottomleft: 10px;<br />
-webkit-border-top-left-radius: 10px;<br />
-webkit-border-bottom-left-radius: 10px;</p></blockquote>
<p>To create the gradient background we need to add this:</p>
<blockquote><p>background:-moz-linear-gradient(-90deg, #fde98d, #f9cd0a) repeat scroll 0 0 transparent;<br />
background:-webkit-gradient(linear, left top, left bottom, from(#fde98d), to(#f9cd0a));</p></blockquote>
<p>The first color is the top while the second is the bottom. Change the colors to see the effect. As you can see you can change the gradient style as well (-90deg and linear. try change the values to see the effect).</p>
<p>The final thing we need to add is the text shadow:</p>
<blockquote><p>text-shadow: 0 1px 0 #fbf0c3;</p></blockquote>
<p>This works pretty much like the box shadow and you can try to change the values to see how it works.</p>
<p>To create the logo span just use the same code with different values. That&#8217;s all.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.csstemplateheaven.com/2010/02/pure-css3-logo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top ten wordpress plugins to make your site rock</title>
		<link>http://www.csstemplateheaven.com/2010/02/top-ten-wordpress-plugins-to-make-your-site-rock/</link>
		<comments>http://www.csstemplateheaven.com/2010/02/top-ten-wordpress-plugins-to-make-your-site-rock/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 23:34:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles/Tutorials]]></category>
		<category><![CDATA[top ten plugins]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.csstemplateheaven.com/?p=269</guid>
		<description><![CDATA[WordPress is a great platform for publishing your precious content but sometimes we need something more to to give our site that little extra touch. Fortunately we can extend our default WordPress site with plugins. There are thousands of plugins out there, some useful and some less useful. I have created a list over ten plugins I find really useful. W3 Total Cache. If you want to improve the speed [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress is a great platform for publishing your precious content but sometimes we need something more to to give our site that little extra touch. Fortunately we can extend our default WordPress site with plugins. There are thousands of plugins out there, some useful and some less useful. I have created a list over ten plugins I find really useful.</p>
<ol>
<li><a title="W3 Total Cache" href="http://wordpress.org/extend/plugins/w3-total-cache/"><strong>W3 Total Cache</strong></a>. If you want to improve the speed on your site dramatically this is the plugin for you. It&#8217;s easy to install and your site will become much faster.</li>
<li> <a title="WP-ecommerce" href="http://wordpress.org/extend/plugins/wp-e-commerce/"><strong>WP-ecommerce.</strong></a> Start your own webshop fast and easy. With WP-ecommerce you will be up and runnin&#8217; in no time. I think this is the best free e-commerce plugins available.</li>
<li><a title="NextGen Gallery" href="http://wordpress.org/extend/plugins/nextgen-gallery/"><strong>NextGen Gallery</strong></a>. WordPress has a default gallery function which is quite nice, but with this plugin you can easily manage your photos and organize them with albums.</li>
<li><strong><a title="Cforms2" href="http://wordpress.org/extend/plugins/cforms/">CformsII.</a></strong> Manage forms easily with this plugin. It works right out of the box but does also have some powerful functions for advanced forms. You can easily create everything from simple contact forms to large complex forms.</li>
<li><a title="Tweetmeme" href="http://wordpress.org/extend/plugins/tweetmeme/"><strong>Tweetmeme.</strong></a> Let your users retweet your stuff.</li>
<li><a title="All in one SEO pack" href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/"><strong>All in one SEO pack.</strong></a> This is a popular plugin that let you optimize your site for search engines in a simple way.</li>
<li><a title="My Page Order" href="http://wordpress.org/extend/plugins/my-page-order/"><strong>My Page Order.</strong></a> I don&#8217;t understand why this is not an default option in WordPress yet. This plugin lets you re-order your pages easily with a neat drag and drop function. Very useful.</li>
<li><a title="Google analytics for wordpress" href="http://wordpress.org/extend/plugins/google-analytics-for-wordpress/"><strong>Google Analytics for WordPress.</strong></a> Simple but useful. Just paste your analytics code in the textfield.</li>
<li><a title="WP to Twitter" href="http://wordpress.org/extend/plugins/wp-to-twitter/"><strong>WP to Twitter.</strong></a> Automatically publish your post to Twitter with this plugin.</li>
<li><a title="Capability Manager" href="http://wordpress.org/extend/plugins/capsman/"><strong>Capability Manager.</strong></a> Create new user roles and manage roles easily with this plugin.</li>
</ol>
<p>I think these plugins are great to enhance and extend the functionality in WordPress. However there are of course a lot of other great plugins as well so if you have any favourites feel free to post a comment.</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">
<h2>Capability Manager</h2>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.csstemplateheaven.com/2010/02/top-ten-wordpress-plugins-to-make-your-site-rock/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

