Your main.php code looks fine. However, looking at the source of your page again, there is a problem:
Code:
<script type="text/javascript">
//MAIN FUNCTION: rssdisplaybox("rssfeed_id", "rssbox_id", "rssbox_class")
var cssdrivebox=new rssdisplaybox("legacy", "rssbox", "rssclass")
cssdrivebox.set_items_shown(4) //Fetch and display first 4 entries
cssdrivebox.set_template("default") //Use "default" template, which outputs title + description + date
cssdrivebox.start() //Required: start script
</script>
The highlighted parameters are required, yet missing on your page. Not sure if that fixes your original problem above though.
Bookmarks