
Originally Posted by
amandaf
There is only one slight thing I would like to change: I would prefer the item date to be on a separate line to the item title. I assume this should be configured in the gajaxscroller.js file, but am unsure how to do this. Any advice on this would be gratefully received.
Inside the gfeedfetcher.js, this line and the few lines above it control how each portion of the RSS feed is output:
Code:
rssoutput+=this.itemcontainer + itemtitle + " " + itemlabel + " " + itemdate + "\n" + itemdescription + this.itemcontainer.replace("<", "</") + "\n\n"
So to get the item date to display on its own line, you might do something like this:
Code:
rssoutput+=this.itemcontainer + itemtitle + " " + itemlabel + " " + "<br />" + itemdate + "<br />\n" + itemdescription + this.itemcontainer.replace("<", "</") + "\n\n"
Bookmarks