I see it on this site where when I am on a particular section of the site I see the RSS feed icon in the address bar of the browser. How can I add that to my website? I have it on my pages aready, however, its a much better placement being up there.
Hi Chaka,
You can add your RSS feed icon to the address bar by adding the code listed below to the head of your webpage.
<link rel="alternate" type="application/rss+xml" title="Title of Feed" href="location of your rss feed file />
Eg.
<head>
<title>My Famous Webpage</title>
<link rel="alternate" type="application/rss+xml" title="Title of Feed" href="URL of your RSS feed file" />
</head>