<?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: Crafting Minimal Circular 3D Buttons with CSS</title>
	<atom:link href="http://css-tricks.com/circular-3d-buttons/feed/" rel="self" type="application/rss+xml" />
	<link>http://css-tricks.com/circular-3d-buttons/</link>
	<description>Tips, Tricks, and Techniques on using Cascading Style Sheets.</description>
	<lastBuildDate>Wed, 22 May 2013 10:45:28 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Jason Hess</title>
		<link>http://css-tricks.com/circular-3d-buttons/#comment-182390</link>
		<dc:creator>Jason Hess</dc:creator>
		<pubDate>Sat, 21 Jul 2012 17:35:59 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=17161#comment-182390</guid>
		<description><![CDATA[I have a question concerning this example code: 
.icon-home:after { content: &quot;\2302&quot;; } 
.icon-cog:after { content: &quot;\2699&quot;; } 
.icon-cw:after { content: &quot;\d7c60&quot;; } 
.icon-location:after { content: &quot;\e724&quot;; }                                                                             



I see how the icons are being generated using the specific &quot;{ content: &quot;\2302&quot;; }&quot; (as above). This woud be the icons on the buttons themselves for example.

How would I replace the icons from www.fontello.com; Do they give you the numerical content Id # once downloaded or how does that work? 


I would appreciate your help in this matter.]]></description>
		<content:encoded><![CDATA[<p>I have a question concerning this example code:<br />
.icon-home:after { content: &#8220;\2302&#8243;; }<br />
.icon-cog:after { content: &#8220;\2699&#8243;; }<br />
.icon-cw:after { content: &#8220;\d7c60&#8243;; }<br />
.icon-location:after { content: &#8220;\e724&#8243;; }                                                                             </p>
<p>I see how the icons are being generated using the specific &#8220;{ content: &#8220;\2302&#8243;; }&#8221; (as above). This woud be the icons on the buttons themselves for example.</p>
<p>How would I replace the icons from <a href="http://www.fontello.com" rel="nofollow">http://www.fontello.com</a>; Do they give you the numerical content Id # once downloaded or how does that work? </p>
<p>I would appreciate your help in this matter.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Troland</title>
		<link>http://css-tricks.com/circular-3d-buttons/#comment-177402</link>
		<dc:creator>Troland</dc:creator>
		<pubDate>Sun, 17 Jun 2012 03:29:58 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=17161#comment-177402</guid>
		<description><![CDATA[Well done, you guy,that i have a question that the code &quot; .
        nav a:before {
        position: absolute;
	top: -18px;
	left: -18px;
	bottom: -18px;
	right: -18px;
} It seems the four positoning param make a width and height both of which was calculated by the a element plus the margin for the nav a:before pesudo element.
So am i right?]]></description>
		<content:encoded><![CDATA[<p>Well done, you guy,that i have a question that the code &#8221; .<br />
        nav a:before {<br />
        position: absolute;<br />
	top: -18px;<br />
	left: -18px;<br />
	bottom: -18px;<br />
	right: -18px;<br />
} It seems the four positoning param make a width and height both of which was calculated by the a element plus the margin for the nav a:before pesudo element.<br />
So am i right?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Troland</title>
		<link>http://css-tricks.com/circular-3d-buttons/#comment-177400</link>
		<dc:creator>Troland</dc:creator>
		<pubDate>Sun, 17 Jun 2012 03:25:12 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=17161#comment-177400</guid>
		<description><![CDATA[The pesudo tell you that the elements with the named class began with the icon-]]></description>
		<content:encoded><![CDATA[<p>The pesudo tell you that the elements with the named class began with the icon-</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pat</title>
		<link>http://css-tricks.com/circular-3d-buttons/#comment-177216</link>
		<dc:creator>Pat</dc:creator>
		<pubDate>Sat, 16 Jun 2012 01:30:55 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=17161#comment-177216</guid>
		<description><![CDATA[I use this a bit for namespacing components in my css rather than having multiple classes e.g. &quot;icon icon-home&quot;..The &quot;icon-&quot; example you already see here but also for items such as &quot;list-&quot;, &quot;btn-&quot; or &quot;pod-&quot;. etc.

I set my base styles in the [class*=&quot;btn-&quot;] declaration and then write my overrides or extensions in the subsequent declarations e.g. &quot;btn-primary&quot; .

There are some considerations with this though. You have to make sure no other classes contain the keyword you use the &quot;*=&quot; selector on. Also the &quot;*=&quot; selector is probably one of the least performant of the CSS selectors. But in fairness if you are worried about performance you are probably better off focusing your efforts elsewhere, e.g. gzip, minifying or optimising images, as tweaking CSS selectors is more micro-optimisation.]]></description>
		<content:encoded><![CDATA[<p>I use this a bit for namespacing components in my css rather than having multiple classes e.g. &#8220;icon icon-home&#8221;..The &#8220;icon-&#8221; example you already see here but also for items such as &#8220;list-&#8221;, &#8220;btn-&#8221; or &#8220;pod-&#8221;. etc.</p>
<p>I set my base styles in the [class*="btn-"] declaration and then write my overrides or extensions in the subsequent declarations e.g. &#8220;btn-primary&#8221; .</p>
<p>There are some considerations with this though. You have to make sure no other classes contain the keyword you use the &#8220;*=&#8221; selector on. Also the &#8220;*=&#8221; selector is probably one of the least performant of the CSS selectors. But in fairness if you are worried about performance you are probably better off focusing your efforts elsewhere, e.g. gzip, minifying or optimising images, as tweaking CSS selectors is more micro-optimisation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Antonio Lettieri</title>
		<link>http://css-tricks.com/circular-3d-buttons/#comment-176847</link>
		<dc:creator>Antonio Lettieri</dc:creator>
		<pubDate>Thu, 14 Jun 2012 20:57:36 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=17161#comment-176847</guid>
		<description><![CDATA[That&#039;s awesome!
Side note:  display:block isn&#039;t necessary when using absolute positioning. Element is no longer part of the page flow. 

Might help save a couple of css lines ;)]]></description>
		<content:encoded><![CDATA[<p>That&#8217;s awesome!<br />
Side note:  display:block isn&#8217;t necessary when using absolute positioning. Element is no longer part of the page flow. </p>
<p>Might help save a couple of css lines ;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob Salaman</title>
		<link>http://css-tricks.com/circular-3d-buttons/#comment-176790</link>
		<dc:creator>Rob Salaman</dc:creator>
		<pubDate>Thu, 14 Jun 2012 16:06:20 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=17161#comment-176790</guid>
		<description><![CDATA[Tommy,
I see where you are coming from and the point you are making is a good one. Maybe I worded what I was saying wrong, I wasn&#039;t implying that we should bodge our work and hope people just use better browsers. I think that every site needs to be able to work in all browsers, hence why I suggest a separate stylesheet for users in a lower generation of IE.
The little comment at the bottom of my point was not to say that developers shouldn&#039;t take into account the problems we face with browser support, it was just a suggestion to Bill personally. He probably already does have a perfectly capable browser and it was probably foolish to say he needed to upgrade; however my intention wasn&#039;t to degrade the importance of browser support.]]></description>
		<content:encoded><![CDATA[<p>Tommy,<br />
I see where you are coming from and the point you are making is a good one. Maybe I worded what I was saying wrong, I wasn&#8217;t implying that we should bodge our work and hope people just use better browsers. I think that every site needs to be able to work in all browsers, hence why I suggest a separate stylesheet for users in a lower generation of IE.<br />
The little comment at the bottom of my point was not to say that developers shouldn&#8217;t take into account the problems we face with browser support, it was just a suggestion to Bill personally. He probably already does have a perfectly capable browser and it was probably foolish to say he needed to upgrade; however my intention wasn&#8217;t to degrade the importance of browser support.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tommy</title>
		<link>http://css-tricks.com/circular-3d-buttons/#comment-176788</link>
		<dc:creator>Tommy</dc:creator>
		<pubDate>Thu, 14 Jun 2012 15:44:22 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=17161#comment-176788</guid>
		<description><![CDATA[&lt;em&gt;Honestly you should really be upgrading to IE9 anyway, or just using a better browser full stop, like: safari or chrome.&lt;/em&gt;

Come on, did you stop to think that perhaps Bill is already using a perfectly capable browser? He is, after all on this website to begin with. I would think it safe to assume he might be keeping his clients/customers in mind when testing older browsers.

It reminds me of an incident that happened last weekend at the FrontEnd design conference in St. Pete; a speaker who specialized more in &quot;bleeding edge&quot; browser usage was asked what he suggested to devs/designers who needed to support older browsers. His answer was to suggest that those users upgrade. Not very practical for an e-commerce site (where I want them to convert and could care less what browser they use), or most other websites that want to cater to a large audience. Sadly, some folks seem to forget we are building this &quot;web&quot; for more then just designers/devs, we also have to keep others in mind who might not spend 8+ hours a day behind a computer.]]></description>
		<content:encoded><![CDATA[<p><em>Honestly you should really be upgrading to IE9 anyway, or just using a better browser full stop, like: safari or chrome.</em></p>
<p>Come on, did you stop to think that perhaps Bill is already using a perfectly capable browser? He is, after all on this website to begin with. I would think it safe to assume he might be keeping his clients/customers in mind when testing older browsers.</p>
<p>It reminds me of an incident that happened last weekend at the FrontEnd design conference in St. Pete; a speaker who specialized more in &#8220;bleeding edge&#8221; browser usage was asked what he suggested to devs/designers who needed to support older browsers. His answer was to suggest that those users upgrade. Not very practical for an e-commerce site (where I want them to convert and could care less what browser they use), or most other websites that want to cater to a large audience. Sadly, some folks seem to forget we are building this &#8220;web&#8221; for more then just designers/devs, we also have to keep others in mind who might not spend 8+ hours a day behind a computer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff</title>
		<link>http://css-tricks.com/circular-3d-buttons/#comment-176785</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Thu, 14 Jun 2012 15:28:06 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=17161#comment-176785</guid>
		<description><![CDATA[That confirms my assumption.  I mean, that&#039;s what I thought it was doing based on the classes that followed.  I love stuff like this that helps reduce coding.  I just gotta remember and get used to implementing it.  :-)]]></description>
		<content:encoded><![CDATA[<p>That confirms my assumption.  I mean, that&#8217;s what I thought it was doing based on the classes that followed.  I love stuff like this that helps reduce coding.  I just gotta remember and get used to implementing it.  :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: amidude</title>
		<link>http://css-tricks.com/circular-3d-buttons/#comment-176780</link>
		<dc:creator>amidude</dc:creator>
		<pubDate>Thu, 14 Jun 2012 14:42:27 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=17161#comment-176780</guid>
		<description><![CDATA[I believe that is a CSS3 Attribute Selector used to identify any class &quot;containing&quot; the prefix/attribute &quot; icon-&quot;.]]></description>
		<content:encoded><![CDATA[<p>I believe that is a CSS3 Attribute Selector used to identify any class &#8220;containing&#8221; the prefix/attribute &#8221; icon-&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: آژانس مسافرتی</title>
		<link>http://css-tricks.com/circular-3d-buttons/#comment-176713</link>
		<dc:creator>آژانس مسافرتی</dc:creator>
		<pubDate>Thu, 14 Jun 2012 07:56:58 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=17161#comment-176713</guid>
		<description><![CDATA[DUDE! These are niiiice…]]></description>
		<content:encoded><![CDATA[<p>DUDE! These are niiiice…</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced (User agent is rejected)
Content Delivery Network via cdn.css-tricks.com

 Served from: css-tricks.com @ 2013-05-22 04:12:47 by W3 Total Cache -->