<?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: Breadcrumb Navigation with CSS Triangles</title>
	<atom:link href="http://css-tricks.com/triangle-breadcrumbs/feed/" rel="self" type="application/rss+xml" />
	<link>http://css-tricks.com/triangle-breadcrumbs/</link>
	<description>Tips, Tricks, and Techniques on using Cascading Style Sheets.</description>
	<lastBuildDate>Mon, 20 May 2013 13:23:02 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Kerrick Long</title>
		<link>http://css-tricks.com/triangle-breadcrumbs/#comment-86894</link>
		<dc:creator>Kerrick Long</dc:creator>
		<pubDate>Mon, 20 Dec 2010 18:56:02 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=7774#comment-86894</guid>
		<description><![CDATA[Alternatively, there&#039;s no reason to alter the Lightness property of HLSA when on a white background, make it more transparent.

&lt;code&gt;hsl(8%, 100%, 50%, 1)
hsl(8%, 100%, 50%, .8)
hsl(8%, 100%, 50%, .6)&lt;/code&gt;]]></description>
		<content:encoded><![CDATA[<p>Alternatively, there&#8217;s no reason to alter the Lightness property of HLSA when on a white background, make it more transparent.</p>
<p><code>hsl(8%, 100%, 50%, 1)<br />
hsl(8%, 100%, 50%, .8)<br />
hsl(8%, 100%, 50%, .6)</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kerrick Long</title>
		<link>http://css-tricks.com/triangle-breadcrumbs/#comment-86893</link>
		<dc:creator>Kerrick Long</dc:creator>
		<pubDate>Mon, 20 Dec 2010 18:54:06 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=7774#comment-86893</guid>
		<description><![CDATA[I think an ordered list would be fine semantically (because the order of the breadcrumbs matter), and is simple.

The difference between using an &lt;code&gt;&lt;ol&gt;&lt;/code&gt; and a bunch of nested &lt;code&gt;&lt;ul&gt;&lt;/code&gt;s is how you perceive the way breadcrumbs work.

For the &lt;code&gt;&lt;ol&gt;&lt;/code&gt; case:


  Begin at &quot;Top Level&quot;
  Continue to &quot;Second Level&quot;
  Continue to &quot;Third Level&quot;
  Finish at &quot;Current Item&quot;


For the nested &lt;code&gt;&lt;ul&gt;&lt;/code&gt; case:

  Begin at the list of links in the &quot;Top Level&quot;
  Choose &quot;Second Level&quot; from the next list of choices
  Choose &quot;Third Level&quot; from the next list of choices
  Choose &quot;Current Item&quot; from the next list of choices


I suppose it depends on whether you want to view it as a direct path/causal relationship (&lt;code&gt;&lt;ol&gt;&lt;/code&gt;) or as a series of choices showing only the chosen items (&lt;code&gt;&lt;ul&gt;&lt;/code&gt;).]]></description>
		<content:encoded><![CDATA[<p>I think an ordered list would be fine semantically (because the order of the breadcrumbs matter), and is simple.</p>
<p>The difference between using an <code>&lt;ol&gt;</code> and a bunch of nested <code>&lt;ul&gt;</code>s is how you perceive the way breadcrumbs work.</p>
<p>For the <code>&lt;ol&gt;</code> case:</p>
<p>  Begin at &#8220;Top Level&#8221;<br />
  Continue to &#8220;Second Level&#8221;<br />
  Continue to &#8220;Third Level&#8221;<br />
  Finish at &#8220;Current Item&#8221;</p>
<p>For the nested <code>&lt;ul&gt;</code> case:</p>
<p>  Begin at the list of links in the &#8220;Top Level&#8221;<br />
  Choose &#8220;Second Level&#8221; from the next list of choices<br />
  Choose &#8220;Third Level&#8221; from the next list of choices<br />
  Choose &#8220;Current Item&#8221; from the next list of choices</p>
<p>I suppose it depends on whether you want to view it as a direct path/causal relationship (<code>&lt;ol&gt;</code>) or as a series of choices showing only the chosen items (<code>&lt;ul&gt;</code>).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kerrick Long</title>
		<link>http://css-tricks.com/triangle-breadcrumbs/#comment-86892</link>
		<dc:creator>Kerrick Long</dc:creator>
		<pubDate>Mon, 20 Dec 2010 18:44:34 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=7774#comment-86892</guid>
		<description><![CDATA[Instead of using nth-child, you could apply class names such as &lt;code&gt;level-1&lt;/code&gt; to each &lt;code&gt;&lt;li&gt;&lt;/code&gt;. Since you are already calling nth-child so much in the CSS for the lightening colors, you might as well.

Doing this, along with adding z-index starting with 1 at the lowest level and ending at (for this example) 5 at the highest level, and using rgb instead of hsla, gives you IE8 support.

&lt;a href=&quot;http://snipplr.com/view/45986/css-triangle-breadcrumb-navigation/&quot; rel=&quot;nofollow&quot;&gt;Test case on Snipplr&lt;/a&gt;]]></description>
		<content:encoded><![CDATA[<p>Instead of using nth-child, you could apply class names such as <code>level-1</code> to each <code>&lt;li&gt;</code>. Since you are already calling nth-child so much in the CSS for the lightening colors, you might as well.</p>
<p>Doing this, along with adding z-index starting with 1 at the lowest level and ending at (for this example) 5 at the highest level, and using rgb instead of hsla, gives you IE8 support.</p>
<p><a href="http://snipplr.com/view/45986/css-triangle-breadcrumb-navigation/" rel="nofollow">Test case on Snipplr</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steven Davis</title>
		<link>http://css-tricks.com/triangle-breadcrumbs/#comment-85856</link>
		<dc:creator>Steven Davis</dc:creator>
		<pubDate>Wed, 01 Dec 2010 00:33:19 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=7774#comment-85856</guid>
		<description><![CDATA[Where was this tutorial months ago when I needed to code exactly this kind of breadcrumb??? :P AWESOME technique Chris.]]></description>
		<content:encoded><![CDATA[<p>Where was this tutorial months ago when I needed to code exactly this kind of breadcrumb??? :P AWESOME technique Chris.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fawad Hassan</title>
		<link>http://css-tricks.com/triangle-breadcrumbs/#comment-85265</link>
		<dc:creator>Fawad Hassan</dc:creator>
		<pubDate>Fri, 12 Nov 2010 11:55:07 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=7774#comment-85265</guid>
		<description><![CDATA[Very nice. Thanks for the link :)]]></description>
		<content:encoded><![CDATA[<p>Very nice. Thanks for the link :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vara</title>
		<link>http://css-tricks.com/triangle-breadcrumbs/#comment-85259</link>
		<dc:creator>vara</dc:creator>
		<pubDate>Fri, 12 Nov 2010 07:17:05 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=7774#comment-85259</guid>
		<description><![CDATA[It is very nice making triangles with out using images. Still I dont understand How he did it. I have to go through it.

thanks
vara]]></description>
		<content:encoded><![CDATA[<p>It is very nice making triangles with out using images. Still I dont understand How he did it. I have to go through it.</p>
<p>thanks<br />
vara</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: w3planting</title>
		<link>http://css-tricks.com/triangle-breadcrumbs/#comment-85136</link>
		<dc:creator>w3planting</dc:creator>
		<pubDate>Tue, 09 Nov 2010 08:52:25 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=7774#comment-85136</guid>
		<description><![CDATA[as usual awesome work :) thanks]]></description>
		<content:encoded><![CDATA[<p>as usual awesome work :) thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: webdesdign</title>
		<link>http://css-tricks.com/triangle-breadcrumbs/#comment-85089</link>
		<dc:creator>webdesdign</dc:creator>
		<pubDate>Sun, 07 Nov 2010 12:17:45 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=7774#comment-85089</guid>
		<description><![CDATA[Nice idea but not really browsercompatible. Although i am going to use it :)]]></description>
		<content:encoded><![CDATA[<p>Nice idea but not really browsercompatible. Although i am going to use it :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Radovanovic</title>
		<link>http://css-tricks.com/triangle-breadcrumbs/#comment-85087</link>
		<dc:creator>David Radovanovic</dc:creator>
		<pubDate>Sun, 07 Nov 2010 11:21:46 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=7774#comment-85087</guid>
		<description><![CDATA[Any suggestions how to implement css arrows with div only breadcrumbs? Thanks.]]></description>
		<content:encoded><![CDATA[<p>Any suggestions how to implement css arrows with div only breadcrumbs? Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: yellow</title>
		<link>http://css-tricks.com/triangle-breadcrumbs/#comment-85084</link>
		<dc:creator>yellow</dc:creator>
		<pubDate>Sat, 06 Nov 2010 22:21:53 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=7774#comment-85084</guid>
		<description><![CDATA[It&#039;s awesome! I really like it, thank you so much!]]></description>
		<content:encoded><![CDATA[<p>It&#8217;s awesome! I really like it, thank you so much!</p>
]]></content:encoded>
	</item>
</channel>
</rss>


<!-- W3 Total Cache: CDN debug info:
Engine:             netdna
-->
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced (User agent is rejected)

 Served from: css-tricks.com @ 2013-05-20 06:26:13 by W3 Total Cache -->