Understanding RSS - Part Six - RSS Channel Sub-Elements Specifically "Image" (& How To Use It)

This is a continuation from my articles on RSS

Now we have covered some of the major points in the "Channel" element, we will now cover the various sub-elements in the channel element - specifically the "image" element. Crtitical Point - None of these are required EXCEPT for the command line of:

<CHANNEL></CHANNEL> However it would be to your best interest to include some of them. Our purpose is to create an RSS feed template that you can use, and what is known as a "well formed XML document" which will pass validation with flying colors! (And make you into a techie as well!)

Those of you who understand RSS templates might ask why I am concentrating so much on the Channel element and it is a valid question. The thing is that possibilities within a Channel element are all meant to actually "publicize" the information for your entire web site. If you are CNN or Microsoft or the New York Times you have nothing to worry about. But if you are like the majority of us out there, then every bit of information you can get into your RSS template may help. Additionally, it is simply good practice to include some of these elements as the more RSS spreads the more they will be used.

First let me briefly cover the three sub-elements which you will almost NEVER find in an RSS template. (You can easily skip this part, unless you want to understand most of the innards of the RSS 2.0 specification.)

Okay now we are ready for Channel sub-element of image. The image defined here is the image usually asscociated with your RSS feed or your web page. In other words usually it is your LOGO.

Since your LOGO is of critical importance, as most people are visual and they do associate pictures with names, (as the Internet proves over and over again), you should take the time to get this into your RSS template. It is fairly simple so follow these four options within the sub-element of image.

Ready?

  1. First we continue the list (from article four and repeated below at the end with the "image" command. No Biggie here. Just typing or cut and paste.
    <image>
  2. Next we have the "Title" command. In here usually goes the name of the Business. "Randy Pandy's Perfumery" in our case. That is easy enough.
    <title>Randy Pandy's Perfumery</title>
  3. This next one is optional but good practice. This tells the parser how big your logo is, by width and height. If you don't know, just call up in a directory and run your mouse over the file or ask for its properties by right-click. It will tell you the height and width. Remember this is an RSS file, so make the logo a small size and keep its weight down. Good practice is no bigger than 250(w) X 150(h) (and that is huge) and no heavier than 20k (and that is heavy!) We will go for 142X99.
    <width>142</width><height>99</height>
  4. Now you tell the parser in the "Link" command just where your web site is. That is simple and we have done that already. So..
    <link>http://www.randpandy.com</link>
  5. And finally in the "URL" you tell the Parser through your RSS file just where the LOGO can be found on your web site. (Do not link it to your home computer as that is NOT your web server!)
    <url>http://www.randpandy.com/images/randylogo.jpg</url>
  6. And finally we close off the "image" tag.
    </image>

See that was not that hard was it?

Okay lets see what are rss.xml file which will make our RSS feed looks like until now.

<CHANNEL>
<TITLE>Randy Pandy's Perfumery</TITLE>
<DESCRIPTION>RSS Feed for The Great Perfume Products Sold At Randy's Pandy's Perfumery</DESCRIPTION>
<copyright>"Copyright 2006 Randy Pandy's Perfumery - All Rights Reserved"</copyright>
<link>http://www.randypandy.com</link>
<language>en-us</language>
<managingEditor>randypandy@randypandy.com (Randy Pandy)</managingEditor>
<webMaster>webmaster@randypandy.com (Pandy Randy)</webMaster>
<category>Ecommerce</category>
<pubdate>Mon, 5 Dec 2005 23:00:00 GMT</pubdate>
<lastBuildDate>Sun, 4 Dec 2005 23:00:00 GMT</lastBuildDate>
<IMAGE>
<title>Randy Pandy's Perfumery</TITLE>
<WIDTH>142</WIDTH><HEIGHT>99</HEIGHT>
<LINK>http://www.randpandy.com</LINK>
<URL>http://www.randpandy.com/images/randylogo.jpg</URL>
</IMAGE>

That's it for the Channel element! YEAH! And guess what? You can get away without using most of these commands. However as I keep on saying it is good practice.

Our next article will discuss the basics of the "Item" element.

Copyright