You can actually edit the look/position of how the various components of the RSS feed should be shown. Just open up the .js file of the script, and locate the portion:
Code:
var linktitle='<div class="rsstitle"><a href="'+this.link[this.pointer]+'">'+this.title[this.pointer]+'</a></div>'
var description='<div class="rssdescription">'+this.description[this.pointer]+'</div>'
var feeddate='<div class="rssdate">'+this.pubdate[this.pointer]+'</div>'
if (this.logicswitch.indexOf("description")==-1) description=""
if (this.logicswitch.indexOf("date")==-1) feeddate=""
CONTENTS
By rearranging the above code, you can pretty much do whatever you want. But in your case, I gather something like changing the two line:
Code:
var feeddate='<spanclass="rssdate">'+this.pubdate[this.pointer]+'</span>'
var tickercontent=feeddate+linktitle+description //STRING FOR FEED
Bookmarks