<?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>blogfreakz.com &#187; Buttons</title>
	<atom:link href="http://blogfreakz.com/category/button/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogfreakz.com</link>
	<description>Web Development, Web Trends, open source resources</description>
	<lastBuildDate>Fri, 10 Feb 2012 05:40:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>How to Create YouTube Popup Buttons with CSS</title>
		<link>http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/</link>
		<comments>http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 11:53:12 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[Buttons]]></category>
		<category><![CDATA[Software & Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24819</guid>
		<description><![CDATA[Here&#8217;s  a very cool CSS trick I found that will let you have the same buttons as those in YouTube&#8217;s footer! But first, lots of thanks to the following coders below: Dennis Sa - for the jsbin of the matte buttons http://jsbin.com/efesot/6 Trevor Gerzen – for applying the transitions, and Chris Coyier &#8211; for coming [...]]]></description>
			<content:encoded><![CDATA[<p><strong><span style="text-decoration: underline;"> </span></strong>Here&#8217;s  a very cool CSS trick I found that will let you have the same buttons as those in YouTube&#8217;s footer! But first, lots of thanks to the following coders below:</p>
<ul>
<li><a href="http://forrst.me/mdennisa"><strong>Dennis Sa</strong></a><strong> </strong>- for the jsbin of the matte buttons http://jsbin.com/efesot/6</li>
<li><a href="http://dabblet.com/gist/1590204"><strong>Trevor Gerzen</strong></a><strong> </strong>– for applying the transitions, and</li>
<li><a href="http://chriscoyier.net/"><strong>Chris Coyier</strong></a> &#8211; for coming up with this neat trick and sharing it on the web.</li>
</ul>
<p>&nbsp;</p>
<p><img class="aligncenter size-medium wp-image-24821" title="YouTube buttons" src="http://blogfreakz.com/wp-content/uploads/2012/02/114-285x117.jpg" alt="114 285x117 How to Create YouTube Popup Buttons with CSS" width="285" height="117" /></p>
<p>&nbsp;</p>
<p><strong>HTML</strong></p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top"><span style="color: #003366;">&lt;button role=&#8221;button&#8221;&gt;</span></p>
<p><span style="color: #003366;">Button #1</span></p>
<p><span style="color: #003366;">&lt;/button&gt;</span></td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p>As for the base styles for all three states (default, hover, active):</p>
<p><strong>CSS</strong></p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top"><span style="color: #003366;">.button {</span></p>
<p><span style="color: #003366;">border: 1px solid #DDD;</span></p>
<p><span style="color: #003366;">border-radius: 3px;</span></p>
<p><span style="color: #003366;">text-shadow: 0 1px 1px   white;</span></p>
<p><span style="color: #003366;">-webkit-box-shadow: 0 1px   1px #fff;</span></p>
<p><span style="color: #003366;">-moz-box-shadow:    0 1px 1px #fff;</span></p>
<p><span style="color: #003366;">box-shadow:         0 1px 1px #fff;</span></p>
<p><span style="color: #003366;">font: bold 11px Sans-Serif;</span></p>
<p><span style="color: #003366;">padding: 6px 10px;</span></p>
<p><span style="color: #003366;">white-space: nowrap;</span></p>
<p><span style="color: #003366;">vertical-align: middle;</span></p>
<p><span style="color: #003366;">color: #666;</span></p>
<p><span style="color: #003366;">background: transparent;</span></p>
<p><span style="color: #003366;">cursor: pointer;</span></p>
<p><span style="color: #003366;">}</span></p>
<p><span style="color: #003366;">.button:hover, .button:focus {</span></p>
<p><span style="color: #003366;">border-color: #999;</span></p>
<p><span style="color: #003366;">background:   -webkit-linear-gradient(top, white, #E0E0E0);</span></p>
<p><span style="color: #003366;">background:    -moz-linear-gradient(top, white,   #E0E0E0);</span></p>
<p><span style="color: #003366;">background:     -ms-linear-gradient(top, white,   #E0E0E0);</span></p>
<p><span style="color: #003366;">background:      -o-linear-gradient(top, white,   #E0E0E0);</span></p>
<p><span style="color: #003366;">-webkit-box-shadow: 0 1px   2px rgba(0,0,0,0.25), inset 0 0 3px #fff;</span></p>
<p><span style="color: #003366;">-moz-box-shadow:    0 1px 2px rgba(0,0,0,0.25), inset 0 0 3px   #fff;</span></p>
<p><span style="color: #003366;">box-shadow:         0 1px 2px rgba(0,0,0,0.25), inset 0   0 3px #fff;</span></p>
<p><span style="color: #003366;">}</span></p>
<p><span style="color: #003366;">.button:active {</span></p>
<p><span style="color: #003366;">border: 1px solid #AAA;</span></p>
<p><span style="color: #003366;">border-bottom-color: #CCC;</span></p>
<p><span style="color: #003366;">border-top-color: #999;</span></p>
<p><span style="color: #003366;">-webkit-box-shadow: inset 0   1px 2px #aaa;</span></p>
<p><span style="color: #003366;">-moz-box-shadow:    inset 0 1px 2px #aaa;</span></p>
<p><span style="color: #003366;">box-shadow:         inset 0 1px 2px #aaa;</span></p>
<p><span style="color: #003366;">background:   -webkit-linear-gradient(top, #E6E6E6, gainsboro);</span></p>
<p><span style="color: #003366;">background:    -moz-linear-gradient(top, #E6E6E6,   gainsboro);</span></p>
<p><span style="color: #003366;">background:     -ms-linear-gradient(top, #E6E6E6,   gainsboro);</span></p>
<p><span style="color: #003366;">background:      -o-linear-gradient(top, #E6E6E6,   gainsboro);</span></p>
<p><span style="color: #003366;">}</span></td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p><strong>NOTE</strong>: This is short tutorial just teaches you how to mimic the look and not the function. So if you want to be able to include menu functionality on the buttons (like YouTube does) you can check out this<strong> <a href="http://net.tutsplus.com/tutorials/javascript-ajax/5-ways-to-make-ajax-calls-with-jquery/">link</a></strong> and try incorporating the code there with the one here.</p>
<p><a href="http://css-tricks.com/examples/YouTubeButtons/"><strong>Demo</strong></a></p>
<p><a href="http://css-tricks.com/examples/YouTubeButtons.zip"><strong>Download Files</strong></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/" title="popup white css">popup white css</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/" title="youtube icons">youtube icons</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/" title="button popup css">button popup css</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/" title="youtube">youtube</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/" title="how to design button like youtube with css">how to design button like youtube with css</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/" title="free css web popup design">free css web popup design</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/" title="css3 free template">css3 free template</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/" title="css youtube style button">css youtube style button</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/" title="Cool 61 css">Cool 61 css</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/" title="youtube style popup buttons">youtube style popup buttons</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Display your yahoo messenger online status on your blog</title>
		<link>http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/</link>
		<comments>http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/#comments</comments>
		<pubDate>Tue, 06 Sep 2011 21:52:30 +0000</pubDate>
		<dc:creator>Nancy</dc:creator>
				<category><![CDATA[Buttons]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Others]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[online status]]></category>
		<category><![CDATA[yahoo messenger]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=21916</guid>
		<description><![CDATA[How to Display your Yahoo Messenger Online status on your Blog Ever visited a blog, and wish you can IM that blogger right away to ask a quick question? Well&#8230; now you can! This little widget allows you to alert your readers when you are signed on, and ready for quicky conversations on Yahoo Messengner. [...]]]></description>
			<content:encoded><![CDATA[<p>How to Display your Yahoo Messenger Online status on your Blog</p>
<p>Ever visited a blog, and wish you can IM that blogger right away to ask a quick question? Well&#8230; now you can!</p>
<p>This little widget allows you to alert your readers when you are signed on, and ready for quicky conversations on Yahoo Messengner. This is just another great way for you to keep in touch with your readers!</p>
<p>By signing into your yahoo messenger application, it will automatically show your Yahoo Online status in your blog.</p>
<p>Below is the tutuorial how to set this up:</p>
<p>1. Login into your blog dashboard and add Gadget / Wideget HTML / Javascript.</p>
<p>2. Copy and Paste this code below:</p>
<p><a rel="attachment wp-att-21936" href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/attachment/yahoo-code/"><img class="aligncenter size-full wp-image-21936" src="http://blogfreakz.com/wp-content/uploads/2011/09/yahoo-code.png" alt="yahoo code How to Display your yahoo messenger online status on your blog" width="411" height="197" title="How to Display your yahoo messenger online status on your blog" /></a></p>
<p>3. Change  &#8220;your-yahoo-id&#8221; to your Yahoo Messenger UserID</p>
<p>4. Save your Gadget</p>
<p>5. You also can customize the Yahoo Messenger Status Icon in your blog, by simply changing number in t=1  to the number that you want.<strong> </strong></p>
<p><strong>Note</strong>: t number range 1 to 24</p>
<p><strong>Below is the Yahoo Messenger Status Icon broken down in sets of 5<br />
</strong></p>
<p><strong>Code t=1 thru t=5                                                                      Code t=6 thru t=10<br />
</strong></p>
<p><strong><a rel="attachment wp-att-21919" href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/attachment/yahoo-1-5/"><img class="alignleft size-full wp-image-21919" src="http://blogfreakz.com/wp-content/uploads/2011/09/yahoo-1-5.png" alt="yahoo 1 5 How to Display your yahoo messenger online status on your blog" width="182" height="227" title="How to Display your yahoo messenger online status on your blog" /></a><a rel="attachment wp-att-21920" href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/attachment/yahoo-6-10/"><img class="aligncenter size-full wp-image-21920" src="http://blogfreakz.com/wp-content/uploads/2011/09/yahoo-6-10.png" alt="yahoo 6 10 How to Display your yahoo messenger online status on your blog" width="196" height="488" title="How to Display your yahoo messenger online status on your blog" /></a></strong></p>
<p style="text-align: left">&nbsp;</p>
<p style="text-align: left"><strong>Code t=11 thru t=15                                                                  Code t=16 thru t=20</strong></p>
<p style="text-align: center"><strong><a rel="attachment wp-att-21921" href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/attachment/yahoo-11-15/"><img class="alignleft size-full wp-image-21921" src="http://blogfreakz.com/wp-content/uploads/2011/09/yahoo-11-15.png" alt="yahoo 11 15 How to Display your yahoo messenger online status on your blog" width="197" height="612" title="How to Display your yahoo messenger online status on your blog" /></a></strong><a rel="attachment wp-att-21923" href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/attachment/yahoo-21-24/"><strong> </strong></a><strong><a rel="attachment wp-att-21922" href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/attachment/yahoo-16-20/"><img class="aligncenter size-full wp-image-21922" src="http://blogfreakz.com/wp-content/uploads/2011/09/yahoo-16-20.png" alt="yahoo 16 20 How to Display your yahoo messenger online status on your blog" width="203" height="631" title="How to Display your yahoo messenger online status on your blog" /></a><br />
</strong><br />
<strong>Code t=21 thru t=24</strong></p>
<p style="text-align: center"><a rel="attachment wp-att-21923" href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/attachment/yahoo-21-24/"><img class="aligncenter size-full wp-image-21923" src="http://blogfreakz.com/wp-content/uploads/2011/09/yahoo-21-24.png" alt="yahoo 21 24 How to Display your yahoo messenger online status on your blog" width="206" height="513" title="How to Display your yahoo messenger online status on your blog" /></a></p>
<p style="text-align: left">&nbsp;</p>
<p style="text-align: left"><strong>Enjoy!<br />
</strong></p>
<p style="text-align: left"><strong><br />
</strong></p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/" title="yahoo messenger online">yahoo messenger online</a></li>
<li><a href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/" title="cakephp yahoo messenger">cakephp yahoo messenger</a></li>
<li><a href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/" title="website yahoo status icon template">website yahoo status icon template</a></li>
<li><a href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/" title="add site icon yahoo online">add site icon yahoo online</a></li>
<li><a href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/" title="icons to customize your yahoo messenger online status">icons to customize your yahoo messenger online status</a></li>
<li><a href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/" title="yahoo online indicator cakephp">yahoo online indicator cakephp</a></li>
<li><a href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/" title="yahoo messenger online status html code">yahoo messenger online status html code</a></li>
<li><a href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/" title="how to put yahoo messenger status in html5">how to put yahoo messenger status in html5</a></li>
<li><a href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/" title="online indicator into your website/blog">online indicator into your website/blog</a></li>
<li><a href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/" title="javascript display im status for yahoo">javascript display im status for yahoo</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to add a Facebook &#8220;Like&#8221; button to your WordPress Blogs</title>
		<link>http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/</link>
		<comments>http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/#comments</comments>
		<pubDate>Thu, 18 Aug 2011 18:24:45 +0000</pubDate>
		<dc:creator>Nancy</dc:creator>
				<category><![CDATA[Buttons]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Others]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Tooltips]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[apprearance]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[editor]]></category>
		<category><![CDATA[facebook like]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=21539</guid>
		<description><![CDATA[Now, it is easier than ever to add the Facebook famous &#8220;Like&#8221;/&#8221;Recommend&#8221; to your posts and increase your blog popularity. The “Like” button allows users to share their ‘like’ of your WordPress Blog with their friends on Facebook. Every time a user clicks on the “Like” button on your blog, it creates a status update [...]]]></description>
			<content:encoded><![CDATA[<p><strong> </strong></p>
<p>Now, it is easier than ever to add the Facebook famous &#8220;Like&#8221;/&#8221;Recommend&#8221; to your posts and increase your blog popularity. The “Like” button allows users to share their ‘like’ of your WordPress Blog with their friends on Facebook.</p>
<p>Every time a user clicks on the “Like” button on your blog, it creates a status update on the user’s Facebook News Feed with a link back to your WordPress Blog.</p>
<p>Here is how you do it:</p>
<p>1.       Login as administrator to the WordPress admin panel.</p>
<p>2.       Go to Appearance -&gt; Editor.</p>
<p><a rel="attachment wp-att-21578" href="http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/attachment/appearance-editor/"><img class="aligncenter size-full wp-image-21578" src="http://blogfreakz.com/wp-content/uploads/2011/08/Appearance-Editor.jpg" alt="Appearance Editor How to add a Facebook Like button to your WordPress Blogs" width="1408" height="689" title="How to add a Facebook Like button to your WordPress Blogs" /></a></p>
<p>3.       Place the following code wherever you want the like button to appear:</p>
<p><em>&lt;iframe src=&#8221;http://www.facebook.com/plugins/like.php?href=&lt;?php echo urlencode(get_permalink($post-&gt;ID)); ?&gt;&amp;amp;layout=standard&amp;amp;show_faces=false&amp;amp;width=350&amp;amp;action=like&amp;amp;colorscheme=light&#8221; scrolling=&#8221;no&#8221; frameborder=&#8221;0&#8243; allowTransparency=&#8221;true&#8221; style=&#8221;border:none; overflow:hidden; width:350px; height:25px&#8221;&gt;&lt;/iframe&gt;</em></p>
<p>4.       Save the changes, and the final result should look like this:</p>
<p><a rel="attachment wp-att-21581" href="http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/attachment/facebook-like/"><img class="aligncenter size-full wp-image-21581" src="http://blogfreakz.com/wp-content/uploads/2011/08/facebook-like.png" alt="facebook like How to add a Facebook Like button to your WordPress Blogs" width="1316" height="727" title="How to add a Facebook Like button to your WordPress Blogs" /></a><br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/" title="like button">like button</a></li>
<li><a href="http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/" title="facebook style">facebook style</a></li>
<li><a href="http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/" title="facebook like">facebook like</a></li>
<li><a href="http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/" title="add news facebook code">add news facebook code</a></li>
<li><a href="http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/" title="status likes for facebook codes">status likes for facebook codes</a></li>
<li><a href="http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/" title="wordpress admin panel">wordpress admin panel</a></li>
<li><a href="http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/" title="facebook like button">facebook like button</a></li>
<li><a href="http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/" title="ajax iframe facebook">ajax iframe facebook</a></li>
<li><a href="http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/" title="facebook like button wordpress">facebook like button wordpress</a></li>
<li><a href="http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/" title="add facebook like button to wordpress">add facebook like button to wordpress</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CSS3 Facebook Buttons</title>
		<link>http://blogfreakz.com/button/css3-facebook-buttons/</link>
		<comments>http://blogfreakz.com/button/css3-facebook-buttons/#comments</comments>
		<pubDate>Wed, 04 May 2011 13:18:48 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Buttons]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Facebook]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=19673</guid>
		<description><![CDATA[Nicolas Gallagher, front-end developer is create simple CSS to recreate the appearance of Facebook&#8217;s buttons. This button help us to create facebook alike basic buttons, larger buttons, grouped buttons, grouped buttons and buttons with icons. The buttons full support for Firefox 3.5+, Google Chrome, Safari 4+, IE 9+, Opera 11.10+. Some CSS3 enhancements are not [...]]]></description>
			<content:encoded><![CDATA[<p>Nicolas Gallagher, front-end developer is create simple CSS to recreate the appearance of <a title="facebook buttons" rel="nofollow" href="http://nicolasgallagher.com/lab/css3-facebook-buttons/" target="_blank">Facebook&#8217;s buttons</a>. This button help us to create facebook alike basic buttons, larger buttons, grouped buttons, grouped buttons and buttons with icons.</p>
<p><span id="more-19673"></span></p>
<p><a rel="nofollow" href="http://nicolasgallagher.com/lab/css3-facebook-buttons/"><img class="alignnone size-full wp-image-19677" title="facebook-butons" src="http://blogfreakz.com/wp-content/uploads/2011/05/facebook-butons.jpg" alt="facebook butons CSS3 Facebook Buttons" width="600" height="300" /></a></p>
<p>The buttons full support for Firefox 3.5+, Google Chrome, Safari 4+, IE 9+, Opera 11.10+. Some CSS3 enhancements are not supported in older versions of Opera and IE. The use of icons is not supported in IE 6 or IE 7.</p>
<p class="download">Requirements: -<br />
Demo: <a title="facebook buttons" rel="nofollow" href="http://nicolasgallagher.com/lab/css3-facebook-buttons/" target="_blank">http://nicolasgallagher.com/lab/css3-facebook-buttons/</a><br />
License: Public Domain License</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/button/css3-facebook-buttons/" title="css3 facebook buttons">css3 facebook buttons</a></li>
<li><a href="http://blogfreakz.com/button/css3-facebook-buttons/" title="css3 facebook button">css3 facebook button</a></li>
<li><a href="http://blogfreakz.com/button/css3-facebook-buttons/" title="CSS3 Facebook">CSS3 Facebook</a></li>
<li><a href="http://blogfreakz.com/button/css3-facebook-buttons/" title="facebook buttons">facebook buttons</a></li>
<li><a href="http://blogfreakz.com/button/css3-facebook-buttons/" title="button facebook css">button facebook css</a></li>
<li><a href="http://blogfreakz.com/button/css3-facebook-buttons/" title="facebook button css">facebook button css</a></li>
<li><a href="http://blogfreakz.com/button/css3-facebook-buttons/" title="how to create facebook button">how to create facebook button</a></li>
<li><a href="http://blogfreakz.com/button/css3-facebook-buttons/" title="facebook button css3">facebook button css3</a></li>
<li><a href="http://blogfreakz.com/button/css3-facebook-buttons/" title="facebook buttons css3">facebook buttons css3</a></li>
<li><a href="http://blogfreakz.com/button/css3-facebook-buttons/" title="css3 button facebook">css3 button facebook</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/button/css3-facebook-buttons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Chunky 3D Web Buttons (PSD)</title>
		<link>http://blogfreakz.com/photoshop-tutorial/free-chunky-3d-web-buttons-psd/</link>
		<comments>http://blogfreakz.com/photoshop-tutorial/free-chunky-3d-web-buttons-psd/#comments</comments>
		<pubDate>Mon, 11 Apr 2011 15:37:25 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Buttons]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=18571</guid>
		<description><![CDATA[3d web buttons are very popular recently . Premiumpixels is sharing free set of  3D web button that you can use for Your web design project. The download (PSD) includes a variety of colours and adding your own is a simple process. With this download all the hard work is done for you as the [...]]]></description>
			<content:encoded><![CDATA[<p><strong>3d web buttons</strong> are very popular recently . Premiumpixels is sharing free set of  3D web button that you can use for Your web design project.</p>
<p><span id="more-18571"></span><a rel="nofollow" href="http://www.premiumpixels.com/freebies/chunky-3d-webbuttons-psd"><img class="alignnone size-full wp-image-18573" title="3d-web-button" src="http://blogfreakz.com/wp-content/uploads/2011/04/3d-web-button.jpg" alt="3d web button Free Chunky 3D Web Buttons (PSD)" width="600" height="300" /></a></p>
<p>The download (PSD) includes a variety of colours and adding your own is a  simple process. With this download all the hard work is done for you as  the buttons include a normal, hover and active state.</p>
<p class="download">Website: <a title="3d web buttons" rel="nofollow" href="http://www.premiumpixels.com/freebies/chunky-3d-webbuttons-psd" target="_blank">http://www.premiumpixels.com/freebies/chunky-3d-webbuttons-psd</a></p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-chunky-3d-web-buttons-psd/" title="web button">web button</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-chunky-3d-web-buttons-psd/" title="button free">button free</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-chunky-3d-web-buttons-psd/" title="website button">website button</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-chunky-3d-web-buttons-psd/" title="free button psd">free button psd</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-chunky-3d-web-buttons-psd/" title="3D WEBSITE">3D WEBSITE</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-chunky-3d-web-buttons-psd/" title="WEB buttons">WEB buttons</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-chunky-3d-web-buttons-psd/" title="free web buttons">free web buttons</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-chunky-3d-web-buttons-psd/" title="web button design">web button design</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-chunky-3d-web-buttons-psd/" title="button 3 state">button 3 state</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-chunky-3d-web-buttons-psd/" title="web button psd">web button psd</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/photoshop-tutorial/free-chunky-3d-web-buttons-psd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Slick Modern Buttons PSD</title>
		<link>http://blogfreakz.com/photoshop-tutorial/free-slick-modern-buttons-psd/</link>
		<comments>http://blogfreakz.com/photoshop-tutorial/free-slick-modern-buttons-psd/#comments</comments>
		<pubDate>Sun, 03 Apr 2011 09:55:26 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Buttons]]></category>
		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=18324</guid>
		<description><![CDATA[Supratim, an Electronics and Communication Engineering student in India is sharing free set of modern 9 web buttons that you can use in website interfaces, call-to-action buttons, web forms, etc. The PSD file is organized and can be easily modified to suit your needs. This web button is free to user for commercial and personal [...]]]></description>
			<content:encoded><![CDATA[<p>Supratim, an Electronics and Communication Engineering student in India is sharing free set of modern 9 web buttons that you can use in website interfaces, call-to-action buttons, web forms, etc. The PSD file is organized and can be easily modified to suit your needs.<br />
<span id="more-18324"></span></p>
<p><a rel="nofollow" href="http://designinstruct.com/free-resources/psds/slick-modern-buttons-psd"><img class="alignnone size-full wp-image-18336" title="psd-buttons" src="http://blogfreakz.com/wp-content/uploads/2011/04/psd-buttons.jpg" alt="psd buttons Free Slick Modern Buttons PSD" width="600" height="254" /></a></p>
<p>This web button is free to user for commercial and personal projects under Freebie Files Usage Terms, but you are not allowed to redistribute or sell files, attribution encouraged.</p>
<p class="download">Website: <a title="slick-modern-buttons-psd" rel="nofollow" href="http://designinstruct.com/free-resources/psds/slick-modern-buttons-psd" target="_blank">http://designinstruct.com/free-resources/psds/slick-modern-buttons-psd</a></p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-slick-modern-buttons-psd/" title="button psd">button psd</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-slick-modern-buttons-psd/" title="psd buttons">psd buttons</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-slick-modern-buttons-psd/" title="psd button">psd button</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-slick-modern-buttons-psd/" title="modern button">modern button</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-slick-modern-buttons-psd/" title="free button psd">free button psd</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-slick-modern-buttons-psd/" title="buttons psd">buttons psd</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-slick-modern-buttons-psd/" title="modern buttons">modern buttons</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-slick-modern-buttons-psd/" title="timeline psd">timeline psd</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-slick-modern-buttons-psd/" title="start stop button psd">start stop button psd</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-slick-modern-buttons-psd/" title="free modern buttons">free modern buttons</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/photoshop-tutorial/free-slick-modern-buttons-psd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Select 2 Buttons &#8211; An  Alternative Way To Displaying Standard HTML Selects</title>
		<link>http://blogfreakz.com/jquery/select-2-buttons-an-alternative-way-to-displaying-standard-html-selects/</link>
		<comments>http://blogfreakz.com/jquery/select-2-buttons-an-alternative-way-to-displaying-standard-html-selects/#comments</comments>
		<pubDate>Wed, 16 Mar 2011 13:39:25 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Buttons]]></category>
		<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=17500</guid>
		<description><![CDATA[Select2Buttons is a jQuery plugin that provides an alternative to the standard html select. The plugin converts selects into a series of button like elements, and if used correctly can provide a better visual representation of the options available to a user. To implement this plugin is pretty simple. Add a standard select to the [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="nofollow" title="select2Buttons" href="https://github.com/o-sam-o/jquery.select2Buttons" target="_blank">Select2Buttons</a> is a jQuery plugin that provides an alternative to the standard html select. The plugin converts selects into a series of button like elements, and if used correctly can provide a better visual representation of the options available to a user.</p>
<p><span id="more-17500"></span><a  rel="nofollow" href="http://o-sam-o.github.com/select2Buttons/"><img class="alignnone size-full wp-image-17502" title="select2buttons" src="http://blogfreakz.com/wp-content/uploads/2011/03/select2buttons.jpg" alt="select2buttons Select 2 Buttons   An  Alternative Way To Displaying Standard HTML Selects" width="600" height="300" /></a></p>
<p>To implement this plugin is pretty simple. Add a standard select to the page and then make 1 jQuery call to convert it into buttons:</p>
<pre class="brush: php;">
&lt;script&gt;
   $('select[name=simple-select]').select2Buttons();
&lt;/script&gt;
</pre>
<p>It has several options for customization, such as js change callbacks, disabled options, disabled selects, OptGroups and allows no default selection (like threadless).</p>
<p class="download">
Requirements: jQuery Framework<br />
Demo: <a  rel="nofollow" title="select2Buttons" href="http://o-sam-o.github.com/select2Buttons/" target="_blank">http://o-sam-o.github.com/select2Buttons</a><br />
License: MIT License
</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/jquery/select-2-buttons-an-alternative-way-to-displaying-standard-html-selects/" title="pretty html button">pretty html button</a></li>
<li><a href="http://blogfreakz.com/jquery/select-2-buttons-an-alternative-way-to-displaying-standard-html-selects/" title="html select alternative">html select alternative</a></li>
<li><a href="http://blogfreakz.com/jquery/select-2-buttons-an-alternative-way-to-displaying-standard-html-selects/" title="select">select</a></li>
<li><a href="http://blogfreakz.com/jquery/select-2-buttons-an-alternative-way-to-displaying-standard-html-selects/" title="jquery select alternative">jquery select alternative</a></li>
<li><a href="http://blogfreakz.com/jquery/select-2-buttons-an-alternative-way-to-displaying-standard-html-selects/" title="Select 2 Buttons">Select 2 Buttons</a></li>
<li><a href="http://blogfreakz.com/jquery/select-2-buttons-an-alternative-way-to-displaying-standard-html-selects/" title="select as buttons">select as buttons</a></li>
<li><a href="http://blogfreakz.com/jquery/select-2-buttons-an-alternative-way-to-displaying-standard-html-selects/" title="select from as buttons css3">select from as buttons css3</a></li>
<li><a href="http://blogfreakz.com/jquery/select-2-buttons-an-alternative-way-to-displaying-standard-html-selects/" title="html 2 buttons">html 2 buttons</a></li>
<li><a href="http://blogfreakz.com/jquery/select-2-buttons-an-alternative-way-to-displaying-standard-html-selects/" title="standard html buttons">standard html buttons</a></li>
<li><a href="http://blogfreakz.com/jquery/select-2-buttons-an-alternative-way-to-displaying-standard-html-selects/" title="Select to Buttons jquery">Select to Buttons jquery</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/jquery/select-2-buttons-an-alternative-way-to-displaying-standard-html-selects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS3 Buttons &#8211; GitHub Style Button</title>
		<link>http://blogfreakz.com/css-layout/css3-buttons-github-style-button/</link>
		<comments>http://blogfreakz.com/css-layout/css3-buttons-github-style-button/#comments</comments>
		<pubDate>Sun, 20 Feb 2011 19:47:25 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Buttons]]></category>
		<category><![CDATA[CSS Layout]]></category>
		<category><![CDATA[CSS3]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=16445</guid>
		<description><![CDATA[CSS3 buttons is a simple framework to create good-looking GitHub style button links. This framework allow us to create pill-like button with more rounded corners, by add a .pill class to the button. Sometimes when you have multiple buttons, it&#8217;s a good thing to highlight the button with the primary action in order to give [...]]]></description>
			<content:encoded><![CDATA[<p><a title="css3 buttons" rel="nofollow" href="http://css3buttons.michaelhenriksen.dk/" target="_blank">CSS3 buttons</a> is a simple framework to create good-looking GitHub style button links. This framework allow us to create pill-like button with more rounded corners, by add a .pill class to the button. Sometimes when you have multiple buttons, it&#8217;s a good thing to highlight the button with the primary action in order to give the user a visual clue of what action to take if in doubt. This can be accomplished by adding a .primary class to the button.<br />
<span id="more-16445"></span></p>
<p><a rel="nofollow" href="http://css3buttons.michaelhenriksen.dk"><img class="alignnone size-full wp-image-16446" title="button-framework" src="http://blogfreakz.com/wp-content/uploads/2011/02/button-framework.jpg" alt="button framework CSS3 Buttons   GitHub Style Button" width="600" height="300" /></a></p>
<p>If you have a button that triggers a negative action, like deleting data, it&#8217;s good practice to warn the user by styling the button differently than the normal buttons. Give a button the class .negative and the hover-state will change from blue to red. You can also create grouped buttons that are linked together, like seen at Gmail and other places, by using the .left, .middle and .right classes.</p>
<p>CSS3 Buttons supports a wide range of icons that can easily be added to any button by adding a span tag inside the anchor tag with the class of .icon and any one of the provided icon classes. CSS3 Buttons works in all major browsers.  Some CSS3 features used in CSS3 Buttons is not supported in Internet Explorer browsers!</p>
<p class="download">Requirements:-<br />
Demo: <a title="css3buttons" rel="nofollow" href="http://css3buttons.michaelhenriksen.dk/" target="_blank">http://css3buttons.michaelhenriksen.dk</a><br />
License: <a rel="nofollow" href="http://unlicense.org/">Unlicense</a></p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/css-layout/css3-buttons-github-style-button/" title="github buttons css3">github buttons css3</a></li>
<li><a href="http://blogfreakz.com/css-layout/css3-buttons-github-style-button/" title="css3 button">css3 button</a></li>
<li><a href="http://blogfreakz.com/css-layout/css3-buttons-github-style-button/" title="css3 buttons github">css3 buttons github</a></li>
<li><a href="http://blogfreakz.com/css-layout/css3-buttons-github-style-button/" title="CSS3 buttons">CSS3 buttons</a></li>
<li><a href="http://blogfreakz.com/css-layout/css3-buttons-github-style-button/" title="github buttons">github buttons</a></li>
<li><a href="http://blogfreakz.com/css-layout/css3-buttons-github-style-button/" title="github button">github button</a></li>
<li><a href="http://blogfreakz.com/css-layout/css3-buttons-github-style-button/" title="github style buttons">github style buttons</a></li>
<li><a href="http://blogfreakz.com/css-layout/css3-buttons-github-style-button/" title="github css3 buttons">github css3 buttons</a></li>
<li><a href="http://blogfreakz.com/css-layout/css3-buttons-github-style-button/" title="GitHub style">GitHub style</a></li>
<li><a href="http://blogfreakz.com/css-layout/css3-buttons-github-style-button/" title="css3 pill">css3 pill</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/css-layout/css3-buttons-github-style-button/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Make Apple Website Alike Button With CSS3</title>
		<link>http://blogfreakz.com/button/apple-website-button-css3/</link>
		<comments>http://blogfreakz.com/button/apple-website-button-css3/#comments</comments>
		<pubDate>Sun, 16 Jan 2011 17:12:39 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Buttons]]></category>
		<category><![CDATA[CSS3]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=14696</guid>
		<description><![CDATA[High-quality interface elements are a great way to add that extra bit of refinement to a website.  Thoughtbot, a web design and development agency in Boston is sharing tutorial, how to building the button that Peter Vidani recently named 2010 Button of the Year. As you can see, they are aiming for an almost exact [...]]]></description>
			<content:encoded><![CDATA[<p>High-quality interface elements are a great way to add that extra bit of refinement to a website.  Thoughtbot, a web design and development agency in Boston is sharing tutorial, how to building the button that Peter Vidani recently named 2010 <a title="button of the year" rel="nofollow" href="http://blog.petervidani.com/post/2688504833/id-like-to-name-apples-download-button" target="_blank">Button of the Year</a>. As you can see, they are aiming for an almost exact reproduction of the image-based button that appears on the Apple website.</p>
<p><span id="more-14696"></span><a rel="nofollow" href="http://robots.thoughtbot.com/post/2718077289/make-css3-buttons-like-a-boss"><img class="alignnone size-full wp-image-14779" title="css3-button" src="http://blogfreakz.com/wp-content/uploads/2011/01/css3-button.png" alt="css3 button How to Make Apple Website Alike Button With CSS3" width="600" height="200" /></a><br />
When designing buttons and other interface elements, it’s important to be consistent about where the light source on your page is coming from. If you look at the button they’re building, you can see that the light source is coming from directly overhead. This means there is a slight highlight at the top edge of the button, the background color goes from lightest at the top to darkest at the bottom, and there is a slight shadow underneath the button. They are using CSS3 background gradients for Mozilla and WebKit, with a solid color for all other browsers.</p>
<p class="download"><strong>Source</strong>: <a title="css3 button" rel="nofollow" href="http://robots.thoughtbot.com/post/2718077289/make-css3-buttons-like-a-boss" target="_blank">http://robots.thoughtbot.com/post/2718077289/make-css3-buttons-like-a-boss</a></p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/button/apple-website-button-css3/" title="css3 apple button">css3 apple button</a></li>
<li><a href="http://blogfreakz.com/button/apple-website-button-css3/" title="apple button css3">apple button css3</a></li>
<li><a href="http://blogfreakz.com/button/apple-website-button-css3/" title="css apple button">css apple button</a></li>
<li><a href="http://blogfreakz.com/button/apple-website-button-css3/" title="css3 apple buttons">css3 apple buttons</a></li>
<li><a href="http://blogfreakz.com/button/apple-website-button-css3/" title="how to make apple buttons">how to make apple buttons</a></li>
<li><a href="http://blogfreakz.com/button/apple-website-button-css3/" title="apple css3 button">apple css3 button</a></li>
<li><a href="http://blogfreakz.com/button/apple-website-button-css3/" title="apple css3">apple css3</a></li>
<li><a href="http://blogfreakz.com/button/apple-website-button-css3/" title="apple button css">apple button css</a></li>
<li><a href="http://blogfreakz.com/button/apple-website-button-css3/" title="apple website buttons">apple website buttons</a></li>
<li><a href="http://blogfreakz.com/button/apple-website-button-css3/" title="apple css3 buttons">apple css3 buttons</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/button/apple-website-button-css3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>We Love Buttons- Beautiful WebKit CSS3 Button</title>
		<link>http://blogfreakz.com/button/webkit-css3-button/</link>
		<comments>http://blogfreakz.com/button/webkit-css3-button/#comments</comments>
		<pubDate>Tue, 04 Jan 2011 22:08:25 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Buttons]]></category>
		<category><![CDATA[CSS3]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=14072</guid>
		<description><![CDATA[We Love Button is CSS project from Pico and friends. There are about 35 buttons and most of them only works in WebKit browsers  This library of sorts allows you to easily get beautiful buttons in WebKit browsers. The markup is almost sexier than the buttons themselves. These are easy to use. Simply download our [...]]]></description>
			<content:encoded><![CDATA[<p><a title="webkit button" rel="nofollow" href="http://www.wearepico.com/buttons/" target="_blank">We Love Button</a> is CSS project from Pico and friends. There are about 35 buttons and most of them only works in WebKit browsers  This library of sorts allows you to easily get beautiful buttons in WebKit browsers. The markup is almost sexier than the buttons themselves.<br />
<span id="more-14072"></span></p>
<p><a rel="nofollow" href="http://www.wearepico.com/buttons/"><img class="alignnone size-full wp-image-14180" title="webkit-button" src="http://blogfreakz.com/wp-content/uploads/2011/01/webkit-button.jpg" alt="webkit button We Love Buttons  Beautiful WebKit CSS3 Button" width="600" height="292" /></a></p>
<p>These are easy to use. Simply download our master stylesheet, include it, and copy and paste the markup under each button anywhere in your document. Simple!. All of these  are free to use these for anything, but they come with no warranty or guarantees.</p>
<p class="download"><strong>Requirements</strong>: Webkit Browser<br />
<strong>Demo: </strong><a title="webkit button" rel="nofollow" href="http://www.wearepico.com/buttons/" target="_blank">http://www.wearepico.com/buttons/</a><br />
<strong>License</strong>: Free License</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/button/webkit-css3-button/" title="css3 button gallery">css3 button gallery</a></li>
<li><a href="http://blogfreakz.com/button/webkit-css3-button/" title="webkit button">webkit button</a></li>
<li><a href="http://blogfreakz.com/button/webkit-css3-button/" title="webkit buttons">webkit buttons</a></li>
<li><a href="http://blogfreakz.com/button/webkit-css3-button/" title="we love buttons">we love buttons</a></li>
<li><a href="http://blogfreakz.com/button/webkit-css3-button/" title="beautiful buttons">beautiful buttons</a></li>
<li><a href="http://blogfreakz.com/button/webkit-css3-button/" title="css3 buttons gallery">css3 buttons gallery</a></li>
<li><a href="http://blogfreakz.com/button/webkit-css3-button/" title="beautiful button">beautiful button</a></li>
<li><a href="http://blogfreakz.com/button/webkit-css3-button/" title="css3 button">css3 button</a></li>
<li><a href="http://blogfreakz.com/button/webkit-css3-button/" title="beautiful css3 buttons">beautiful css3 buttons</a></li>
<li><a href="http://blogfreakz.com/button/webkit-css3-button/" title="love button css">love button css</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/button/webkit-css3-button/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

