For each RSS instance on your page, the variable "cssfeed" needs to be different/ unique. So while for the first instance, you may have:
Code:
var cssfeed=new gfeedfetcher("example1", "example1class", "")
cssfeed.addFeed("El Nuevo Dia - Portada", "http://www.elnuevodia.com/rss/portada.xml") //Specify "label" plus URL to RSS feed
cssfeed.setentrycontainer("li") //Display each entry as a list (li element)
cssfeed.filterfeed(10, "title") //Show 10 entries, sort by date
The 2nd instance mus use a variable other than "cssfeed", and so on.
cssfeed.init() //Always call this last
Bookmarks