Making the RSS icon show in the browser
In Firefox (and other browsers, I assume) when you are on a site with an RSS feed, Firefox shows an orange RSS icon in the address bar like this:

I was trying to figure out how to get Firefox to show that icon for a site I'm working on at work. I am putting RSS into a page, and the RSS is working fine (I'm using ColdFusion's cffeed tag), but the Orange icon was not showing up in Firefox. In the past I had just assumed that Firefox discovered that the site was using RSS (using keyword searches in the page, or something) and displayed the icon accordingly. But it turns out the site developer has to put a link tag in their page header, like this:
rel="alternate"
type="application/rss+xml"
title="RSS"
href="rss.cfm" />
Learn something new everyday! By the way, IE 7 doesn't display an RSS icon like Firefox does (does IE 8?).
Jake Munson
38 Yrs old
IE 7 (I don't know about IE8) will show the orange icon if the RSS if the <link rel= "alternate" .... tag like you have is used as long as you have it in the header portion of the page. I tried putting it in my SSI "header" page and it would show up great in FF and Safari, but not in IE7. So I tried putting the tags for the RSS feeds in both the SSI header page and on the main page. Well, I got the orange icon in both IE7 and FF, but in FF I get a duplicate list! Poop!
Ideally, I would like to have the RSS in the SSI header because it then shows access to your RSS feeds no matter what page of the site the viewer is on.... if anyone knows how to accomplish this and get the orange icon to show in IE7, I'd be most appreciative.
Well, that's my $.02 of experience on the issue. Hope it maybe helps someone else. :-)
<link rel="alternate" type="application/rss+xml" title="Your RSS Feed Name" href="path To your feed/rss.xml" />