The easiest way is probably just to use CSS to cause the "date" field to display on its own line:
Code:
.datefield{ /*CSS for date field in general*/
color:gray;
font-size: 90%;
display: block;
}
The code in red is new. If that doesn't produce the desired effect, remove it, and just edit the .js file directly to do this:
Code:
rssoutput+=itemcontainer + itemtitle + " " + itemlabel + "<br />" + itemdate + "<br />\n" + itemdescription + itemcontainer.replace("<", "</") + "\n\n"
You can pretty much customize the formatting of the output any way you want by editing function formatrssmessage() similar to the above.
Bookmarks