<?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/tag/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 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>Minimal Portfolio Site Layout Free PSD</title>
		<link>http://blogfreakz.com/news/minimal-portfolio-site-layout-free-psd/</link>
		<comments>http://blogfreakz.com/news/minimal-portfolio-site-layout-free-psd/#comments</comments>
		<pubDate>Sat, 18 Jun 2011 13:27:15 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Blue]]></category>
		<category><![CDATA[Buttons]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[designer]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[portfolio]]></category>
		<category><![CDATA[PSD]]></category>
		<category><![CDATA[resource]]></category>
		<category><![CDATA[slider]]></category>
		<category><![CDATA[slideshow]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/news/minimal-portfolio-site-layout-free-psd/</guid>
		<description><![CDATA[Today we are excited to release a new freebie resource. A simple, professional and minimal portfolio site layout. We are releasing this free resource in a fully layered PSD file. This stylish resource is offered exclusively on ahmadhania.com Incoming search terms for the article: free css3 minimal site psd layout free# minimal portfolio psd map [...]]]></description>
			<content:encoded><![CDATA[<p>Today we are excited to release a new freebie resource. A simple, professional and minimal portfolio site layout. We are releasing this free resource in a fully layered PSD file. This stylish resource is offered exclusively on ahmadhania.com<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/news/minimal-portfolio-site-layout-free-psd/" title="free css3 minimal site">free css3 minimal site</a></li>
<li><a href="http://blogfreakz.com/news/minimal-portfolio-site-layout-free-psd/" title="psd layout free#">psd layout free#</a></li>
<li><a href="http://blogfreakz.com/news/minimal-portfolio-site-layout-free-psd/" title="minimal portfolio psd">minimal portfolio psd</a></li>
<li><a href="http://blogfreakz.com/news/minimal-portfolio-site-layout-free-psd/" title="map minimal icon psd">map minimal icon psd</a></li>
<li><a href="http://blogfreakz.com/news/minimal-portfolio-site-layout-free-psd/" title="layout psd site">layout psd site</a></li>
<li><a href="http://blogfreakz.com/news/minimal-portfolio-site-layout-free-psd/" title="html5 minimal portfolio">html5 minimal portfolio</a></li>
<li><a href="http://blogfreakz.com/news/minimal-portfolio-site-layout-free-psd/" title="html5 layouts minimal">html5 layouts minimal</a></li>
<li><a href="http://blogfreakz.com/news/minimal-portfolio-site-layout-free-psd/" title="free psd minimalistic gallery">free psd minimalistic gallery</a></li>
<li><a href="http://blogfreakz.com/news/minimal-portfolio-site-layout-free-psd/" title="free psd layout">free psd layout</a></li>
<li><a href="http://blogfreakz.com/news/minimal-portfolio-site-layout-free-psd/" title="psd website portfolio">psd website portfolio</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/news/minimal-portfolio-site-layout-free-psd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dark Menu Free PSD</title>
		<link>http://blogfreakz.com/news/dark-menu-free-psd/</link>
		<comments>http://blogfreakz.com/news/dark-menu-free-psd/#comments</comments>
		<pubDate>Sat, 28 May 2011 10:21:56 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Buttons]]></category>
		<category><![CDATA[dark]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[designer]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[Graphic design]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[PSD]]></category>
		<category><![CDATA[resource]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/news/dark-menu-free-psd/</guid>
		<description><![CDATA[Today we are excited to release a new freebie resource. A free simple website dark menu. We are releasing this free resource in a fully layered PSD file. This resource is offered exclusively on ahmadhania.com]]></description>
			<content:encoded><![CDATA[<p>Today we are excited to release a new freebie resource. A free simple website dark menu. We are releasing this free resource in a fully layered PSD file. This resource is offered exclusively on ahmadhania.com</p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/news/dark-menu-free-psd/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>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>10 Simple Web Buttons in PSD Format</title>
		<link>http://blogfreakz.com/button/10-simple-web-buttons-in-psd-format/</link>
		<comments>http://blogfreakz.com/button/10-simple-web-buttons-in-psd-format/#comments</comments>
		<pubDate>Sun, 12 Dec 2010 16:10:10 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Buttons]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=13550</guid>
		<description><![CDATA[Premiumpixels is sharing 10 Simple Web Buttons in PSD format. Designed in 10 different colours, these little buttons should fit into almost all web layouts. If they don’t, then just a few tweaks to the PSD and you’re done. The download includes the editable PSD. All files are free for personal and commercial use, no [...]]]></description>
			<content:encoded><![CDATA[<p>Premiumpixels is sharing 10 Simple <strong>Web Buttons in PSD format</strong>. Designed in 10 different colours, these little buttons should fit into almost all web layouts. If they don’t, then just a few tweaks to the PSD and you’re done.<br />
<span id="more-13550"></span><br />
<a rel="nofollow" href="http://www.premiumpixels.com/10-simple-web-buttons-psd/"><img class="alignnone size-full wp-image-13552" title="10_simple_icons" src="http://blogfreakz.com/wp-content/uploads/2010/12/10_simple_icons.jpg" alt="10 simple icons 10 Simple Web Buttons in PSD Format" width="600" height="316" /></a></p>
<p>The download includes the editable PSD. All files are free for personal and commercial use, no attribution  necessary, but certainly appreciated! Re-sale or re-distribution is  prohibited.</p>
<p class="download"><strong>Source</strong> : <a title="10 simple web buttons" rel="nofollow" href="http://www.premiumpixels.com/10-simple-web-buttons-psd/" target="_blank">http://www.premiumpixels.com/10-simple-web-buttons-psd/</a></p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/button/10-simple-web-buttons-in-psd-format/" title="button psd">button psd</a></li>
<li><a href="http://blogfreakz.com/button/10-simple-web-buttons-in-psd-format/" title="search button psd">search button psd</a></li>
<li><a href="http://blogfreakz.com/button/10-simple-web-buttons-in-psd-format/" title="psd buttons">psd buttons</a></li>
<li><a href="http://blogfreakz.com/button/10-simple-web-buttons-in-psd-format/" title="simple web button">simple web button</a></li>
<li><a href="http://blogfreakz.com/button/10-simple-web-buttons-in-psd-format/" title="web buttons psd">web buttons psd</a></li>
<li><a href="http://blogfreakz.com/button/10-simple-web-buttons-in-psd-format/" title="psd button">psd button</a></li>
<li><a href="http://blogfreakz.com/button/10-simple-web-buttons-in-psd-format/" title="simple web buttons">simple web buttons</a></li>
<li><a href="http://blogfreakz.com/button/10-simple-web-buttons-in-psd-format/" title="buttons PSD">buttons PSD</a></li>
<li><a href="http://blogfreakz.com/button/10-simple-web-buttons-in-psd-format/" title="simple buttons">simple buttons</a></li>
<li><a href="http://blogfreakz.com/button/10-simple-web-buttons-in-psd-format/" title="best web buttons psd">best web buttons psd</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/button/10-simple-web-buttons-in-psd-format/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How To Create CSS3 Animated Bubble Buttons</title>
		<link>http://blogfreakz.com/button/css3-animated-bubble-buttons/</link>
		<comments>http://blogfreakz.com/button/css3-animated-bubble-buttons/#comments</comments>
		<pubDate>Mon, 04 Oct 2010 03:00:37 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Buttons]]></category>
		<category><![CDATA[CSS3]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=10829</guid>
		<description><![CDATA[Tutorialzine is sharing tutorial how to create a useful set of animated buttons with the power of CSS3 multiple backgrounds and animations. With this button pack, you can easily turn any link on your page into an animated button by just assigning a class name. No JavaScript necessary. Four color themes and three sizes are [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Tutorialzine</strong> is sharing tutorial<strong> how to create a useful set of animated buttons with the  power of CSS3</strong> multiple backgrounds and animations. With this button  pack, you can easily turn any link on your page into an animated button  by just assigning a class name. No JavaScript necessary. Four color  themes and three sizes are also available by assigning additional class  names.</p>
<p><span id="more-10829"></span></p>
<p><a rel="nofollow" href="http://demo.tutorialzine.com/2010/10/css3-animated-bubble-buttons/css3-buttons.html"><img class="aligncenter size-full wp-image-10853" title="css3button" src="http://blogfreakz.com/wp-content/uploads/2010/10/css3button.jpg" alt="css3button How To Create CSS3 Animated Bubble Buttons" width="600" height="305" /></a></p>
<p>To turn a regular link on your page into a fancy animated CSS3 button, you just need to assign the <strong>.button</strong> class and one of the supported colors.</p>
<p class="download"><strong>Website</strong>: <a title="CSS3 animated buble buttons" rel="nofollow" href="http://tutorialzine.com/2010/10/css3-animated-bubble-buttons" target="_blank">http://tutorialzine.com/2010/10/css3-animated-bubble-buttons</a></p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/button/css3-animated-bubble-buttons/" title="html5 animated buttons">html5 animated buttons</a></li>
<li><a href="http://blogfreakz.com/button/css3-animated-bubble-buttons/" title="html5 animated button">html5 animated button</a></li>
<li><a href="http://blogfreakz.com/button/css3-animated-bubble-buttons/" title="html5 button animation">html5 button animation</a></li>
<li><a href="http://blogfreakz.com/button/css3-animated-bubble-buttons/" title="animated button html5">animated button html5</a></li>
<li><a href="http://blogfreakz.com/button/css3-animated-bubble-buttons/" title="css3 animated buttons">css3 animated buttons</a></li>
<li><a href="http://blogfreakz.com/button/css3-animated-bubble-buttons/" title="animated buttons html5">animated buttons html5</a></li>
<li><a href="http://blogfreakz.com/button/css3-animated-bubble-buttons/" title="css3 button">css3 button</a></li>
<li><a href="http://blogfreakz.com/button/css3-animated-bubble-buttons/" title="css3 bubble">css3 bubble</a></li>
<li><a href="http://blogfreakz.com/button/css3-animated-bubble-buttons/" title="button animation html5">button animation html5</a></li>
<li><a href="http://blogfreakz.com/button/css3-animated-bubble-buttons/" title="animated html5 buttons">animated html5 buttons</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/button/css3-animated-bubble-buttons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BonBon &#8211; Impressive CSS3 Button</title>
		<link>http://blogfreakz.com/css-layout/bonbon-impressive-css3-button/</link>
		<comments>http://blogfreakz.com/css-layout/bonbon-impressive-css3-button/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 03:01:00 +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=9326</guid>
		<description><![CDATA[BobBon is impressive and attractive CSS3 button that make use of CSS3 features. The Goal is Create CSS buttons that are sexy looking, really flexible, but with the most minimalistic markup as possible. BonBon Buttons  named after the French word for &#8220;Candy&#8220;. If you would like to add an icon, you can use the HTML5 [...]]]></description>
			<content:encoded><![CDATA[<p><strong>BobBon</strong> is impressive and attractive <strong>CSS3 button</strong> that make use of CSS3 features. The Goal is Create CSS buttons that are sexy looking, really flexible, but with the most minimalistic markup as possible<strong>.</strong> BonBon Buttons  named after the French word for &#8220;<strong>Candy</strong>&#8220;.</p>
<p><span id="more-9326"></span><a rel="nofollow" href="http://lab.simurai.com/css/buttons/"><img class="aligncenter size-full wp-image-9331" title="bonbon" src="http://blogfreakz.com/wp-content/uploads/2010/09/bonbon.jpg" alt="bonbon BonBon   Impressive CSS3 Button" width="600" height="151" /></a></p>
<p>If you would like to add an icon, you can use the HTML5 custom data attribute like this: <code>data-icon="S"</code>. This allows you to use any of the <a rel="nofollow" href="http://panmental.de/symbols/info.htm">Unicode symbols</a> or the newly released <a href="http://pictos.drewwilson.com/">Picos Font</a> as icons.</p>
<p>This is just a <strong>demo</strong> and not meant to be used on your  next project that targets the average internet user. It&#8217;s just wanted to  show a couple techniques how to use some of the new <strong>CSS3/HTML5 features</strong>.  So only the current version of Safari, Chrome and Firefox are  supported.</p>
<p class="download"><strong>Website:</strong> <a rel="nofollow" href="http://lab.simurai.com/css/buttons/" target="_blank">http://lab.simurai.com/css/buttons</a></p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/css-layout/bonbon-impressive-css3-button/" title="css3 candy buttons">css3 candy buttons</a></li>
<li><a href="http://blogfreakz.com/css-layout/bonbon-impressive-css3-button/" title="css candy buttons">css candy buttons</a></li>
<li><a href="http://blogfreakz.com/css-layout/bonbon-impressive-css3-button/" title="candy buttons css3">candy buttons css3</a></li>
<li><a href="http://blogfreakz.com/css-layout/bonbon-impressive-css3-button/" title="data-icon HTML5">data-icon HTML5</a></li>
<li><a href="http://blogfreakz.com/css-layout/bonbon-impressive-css3-button/" title="candy css3 buttons">candy css3 buttons</a></li>
<li><a href="http://blogfreakz.com/css-layout/bonbon-impressive-css3-button/" title="candy buttons css">candy buttons css</a></li>
<li><a href="http://blogfreakz.com/css-layout/bonbon-impressive-css3-button/" title="css3 data-icon">css3 data-icon</a></li>
<li><a href="http://blogfreakz.com/css-layout/bonbon-impressive-css3-button/" title="bonbon button">bonbon button</a></li>
<li><a href="http://blogfreakz.com/css-layout/bonbon-impressive-css3-button/" title="bon bon button">bon bon button</a></li>
<li><a href="http://blogfreakz.com/css-layout/bonbon-impressive-css3-button/" title="bonbon psd">bonbon psd</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/css-layout/bonbon-impressive-css3-button/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

