<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Create a CSS3 Call to Action Button</title>
	<atom:link href="http://sixrevisions.com/css/create-a-css3-call-to-action-button/feed/" rel="self" type="application/rss+xml" />
	<link>http://sixrevisions.com/css/create-a-css3-call-to-action-button/</link>
	<description></description>
	<lastBuildDate>Sun, 20 May 2012 16:23:24 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
	<item>
		<title>By: carrie</title>
		<link>http://sixrevisions.com/css/create-a-css3-call-to-action-button/#comment-127958</link>
		<dc:creator>carrie</dc:creator>
		<pubDate>Mon, 03 Oct 2011 03:43:44 +0000</pubDate>
		<guid isPermaLink="false">http://sixrevisions.com/?p=3565#comment-127958</guid>
		<description>Thanks a lot for this tutorial css3 buttons is kind tricky, now i can create a variety of buttons in different color.</description>
		<content:encoded><![CDATA[<p>Thanks a lot for this tutorial css3 buttons is kind tricky, now i can create a variety of buttons in different color.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ensurance</title>
		<link>http://sixrevisions.com/css/create-a-css3-call-to-action-button/#comment-93116</link>
		<dc:creator>Ensurance</dc:creator>
		<pubDate>Mon, 28 Feb 2011 18:01:00 +0000</pubDate>
		<guid isPermaLink="false">http://sixrevisions.com/?p=3565#comment-93116</guid>
		<description>Thank you Jones,your code worked for me!</description>
		<content:encoded><![CDATA[<p>Thank you Jones,your code worked for me!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Turanian</title>
		<link>http://sixrevisions.com/css/create-a-css3-call-to-action-button/#comment-89442</link>
		<dc:creator>Turanian</dc:creator>
		<pubDate>Fri, 28 Jan 2011 14:22:22 +0000</pubDate>
		<guid isPermaLink="false">http://sixrevisions.com/?p=3565#comment-89442</guid>
		<description>Great thanks for this nice tutorial...

I learned too much about CSS3 gradient event.</description>
		<content:encoded><![CDATA[<p>Great thanks for this nice tutorial&#8230;</p>
<p>I learned too much about CSS3 gradient event.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Geraint Jones</title>
		<link>http://sixrevisions.com/css/create-a-css3-call-to-action-button/#comment-86203</link>
		<dc:creator>Geraint Jones</dc:creator>
		<pubDate>Wed, 29 Dec 2010 02:31:13 +0000</pubDate>
		<guid isPermaLink="false">http://sixrevisions.com/?p=3565#comment-86203</guid>
		<description>Sadly you cant do color stop&#039;s with IE&#039;s gradient however the following should give you an acceptable work-around

a.btn {
  background: -moz-linear-gradient(#98ba40, #a6c250 35%, #618926);
  background: -webkit-gradient(linear,left top,left bottom,color-stop(0, #98ba40),color-stop(.35, #a6c250),color-stop(1, #618926));
  /* For IE 5.5+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#FF98ba40, endColorstr=#618926);
  /* For Internet Explorer 8 */
  -ms-filter: &quot;progid:DXImageTransform.Microsoft.gradient(startColorstr=#FF98ba40, endColorstr=#618926)&quot;;
}

a.btn:hover {
  background: -moz-linear-gradient(#245192, #1e3b73 75%, #12295d);
  background: -webkit-gradient(linear,left top,left bottom,color-stop(0, #245192),color-stop(.75, #1e3b73),color-stop(1, #12295d));
  /* For IE 5.5+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#FF245192, endColorstr=#12295d);
  /* For Internet Explorer 8 */
  -ms-filter: &quot;progid:DXImageTransform.Microsoft.gradient(startColorstr=#FF245192, endColorstr=#12295d)&quot;;
}</description>
		<content:encoded><![CDATA[<p>Sadly you cant do color stop&#8217;s with IE&#8217;s gradient however the following should give you an acceptable work-around</p>
<p>a.btn {<br />
  background: -moz-linear-gradient(#98ba40, #a6c250 35%, #618926);<br />
  background: -webkit-gradient(linear,left top,left bottom,color-stop(0, #98ba40),color-stop(.35, #a6c250),color-stop(1, #618926));<br />
  /* For IE 5.5+ */<br />
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#FF98ba40, endColorstr=#618926);<br />
  /* For Internet Explorer 8 */<br />
  -ms-filter: &#8220;progid:DXImageTransform.Microsoft.gradient(startColorstr=#FF98ba40, endColorstr=#618926)&#8221;;<br />
}</p>
<p>a.btn:hover {<br />
  background: -moz-linear-gradient(#245192, #1e3b73 75%, #12295d);<br />
  background: -webkit-gradient(linear,left top,left bottom,color-stop(0, #245192),color-stop(.75, #1e3b73),color-stop(1, #12295d));<br />
  /* For IE 5.5+ */<br />
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#FF245192, endColorstr=#12295d);<br />
  /* For Internet Explorer 8 */<br />
  -ms-filter: &#8220;progid:DXImageTransform.Microsoft.gradient(startColorstr=#FF245192, endColorstr=#12295d)&#8221;;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://sixrevisions.com/css/create-a-css3-call-to-action-button/#comment-75832</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Fri, 10 Sep 2010 10:46:40 +0000</pubDate>
		<guid isPermaLink="false">http://sixrevisions.com/?p=3565#comment-75832</guid>
		<description>very nice. thanks

any work-around for IE? Anything to make it look pretty</description>
		<content:encoded><![CDATA[<p>very nice. thanks</p>
<p>any work-around for IE? Anything to make it look pretty</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ankit</title>
		<link>http://sixrevisions.com/css/create-a-css3-call-to-action-button/#comment-71455</link>
		<dc:creator>Ankit</dc:creator>
		<pubDate>Thu, 15 Jul 2010 18:26:17 +0000</pubDate>
		<guid isPermaLink="false">http://sixrevisions.com/?p=3565#comment-71455</guid>
		<description>It&#039;s really for me. 
I was looking for same type of solution for creating Call-to-Action button without using Photoshop.
Thanks</description>
		<content:encoded><![CDATA[<p>It&#8217;s really for me.<br />
I was looking for same type of solution for creating Call-to-Action button without using Photoshop.<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Baris</title>
		<link>http://sixrevisions.com/css/create-a-css3-call-to-action-button/#comment-71421</link>
		<dc:creator>Baris</dc:creator>
		<pubDate>Thu, 15 Jul 2010 13:43:13 +0000</pubDate>
		<guid isPermaLink="false">http://sixrevisions.com/?p=3565#comment-71421</guid>
		<description>thanks for great tutorial.</description>
		<content:encoded><![CDATA[<p>thanks for great tutorial.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kutoku</title>
		<link>http://sixrevisions.com/css/create-a-css3-call-to-action-button/#comment-71301</link>
		<dc:creator>kutoku</dc:creator>
		<pubDate>Wed, 14 Jul 2010 05:28:23 +0000</pubDate>
		<guid isPermaLink="false">http://sixrevisions.com/?p=3565#comment-71301</guid>
		<description>your article is not supporting in IE6&amp;7 browser, right?</description>
		<content:encoded><![CDATA[<p>your article is not supporting in IE6&amp;7 browser, right?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://sixrevisions.com/css/create-a-css3-call-to-action-button/#comment-71086</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Mon, 12 Jul 2010 02:45:07 +0000</pubDate>
		<guid isPermaLink="false">http://sixrevisions.com/?p=3565#comment-71086</guid>
		<description>Thank for this awesome article. Sadly it works only on Firefox. When I try to do it with IE, the result is not good at FF.</description>
		<content:encoded><![CDATA[<p>Thank for this awesome article. Sadly it works only on Firefox. When I try to do it with IE, the result is not good at FF.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alisa</title>
		<link>http://sixrevisions.com/css/create-a-css3-call-to-action-button/#comment-70953</link>
		<dc:creator>Alisa</dc:creator>
		<pubDate>Fri, 09 Jul 2010 19:09:15 +0000</pubDate>
		<guid isPermaLink="false">http://sixrevisions.com/?p=3565#comment-70953</guid>
		<description>Yes, hopefully IE9 will support css3 so that we can start using it in the future. That means our corporation *might* upgrade everyone to it in about about 3 years.. our standard is still IE7 (but at least we got rid of IE6)! :)</description>
		<content:encoded><![CDATA[<p>Yes, hopefully IE9 will support css3 so that we can start using it in the future. That means our corporation *might* upgrade everyone to it in about about 3 years.. our standard is still IE7 (but at least we got rid of IE6)! :)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

