I will try to tell my problem
In this example you use 2 different RSS boxes, but i want to use the same type of RSS box.
So in this example i want:
Code:
<h3>Example 1 (CSS Drive):</h3>
<script type="text/javascript">
//MAIN FUNCTION: rssdisplaybox("rssfeed_id", "rssbox_id", "rssbox_class")
var showbbc=new rssdisplaybox("cssdrive", "bbcid", "someclass")
showbbc.set_items_shown(10, 5) //Fetch 10 entries, but display only 5 at a time (pagination links auto created)
showbbc.setpagination("auto", "top") //Auto generate pagination interface, position it to the top of the RSS box
showbbc.set_template("titles") //Use "titles" template, which outputs title + category
showbbc.start() //Required: start script
</script>
</script>
<br /><br />
<h3>Example 2 (BBC News):</h3>
<script type="text/javascript">
//MAIN FUNCTION: rssdisplaybox("rssfeed_id", "rssbox_id", "rssbox_class")
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.setpagination("auto", "top") //Auto generate pagination interface, position it to the top of the RSS box
showbbc.set_template("titles") //Use "titles" template, which outputs title + category
showbbc.start() //Required: start script
</script>
To show the CCSDRIVE CCS in the same type of RSSBOX as BBC.
Bookmarks