you can have multiple feeds :
first you have to fix this
Code:
<script type="text/javascript">
//MAIN FUNCTION: rssdisplaybox("rssfeed_id", "rssbox_id", "rssbox_class")
var cssdrive2=new rssdisplaybox("cssdrive", "cssnewsbox", "someclass")
cssdrive2.set_items_shown(0, 4) //Fetch 8 entries, but display only 3 at a time (pagination links auto created)
cssdrive2.set_template("default") //Use "default" template, which outputs title + description + date
</script>
the red need to be at least the number 1
below are a few examples of how to add more feeds on your page.
Code:
<script type="text/javascript">
var showbbc=new rssdisplaybox("bbc", "bbcid", "someclass")
showbbc.set_items_shown(10, 5) //Fetch 10 entries, but display only 5 at a time (pagination links auto created)
showbbc.set_template("titles") //Use "titles" template, which outputs title + category
showbbc.start() //Required: start script
</script>
<script type="text/javascript">
var showcnn=new rssdisplaybox("cnn", "cnnid", "someclass")
showcnn.set_items_shown(10, 5) //Fetch 10 entries, but display only 5 at a time (pagination links auto created)
showcnn.set_template("titles") //Use "titles" template, which outputs title + category
showcnn.start() //Required: start script
</script>
<script type="text/javascript">
var showwebmd=new rssdisplaybox("webmd", "webmdid", "someclass")
showwebmd.set_items_shown(10, 5) //Fetch 10 entries, but display only 5 at a time (pagination links auto created)
showwebmd.set_template("titles") //Use "titles" template, which outputs title + category
showwebmd.start() //Required: start script
</script>
Then you have to add the actual feed to the main.php page in the rssbox folder and also add the css too
Bookmarks