Well, the snippet portion is just all the "other" text within each feed container. If you've set the containers to be DIV tags, ie:
Code:
var cssfeed=new gfeedrssticker("example1", "example1class", 2000, "_new")
cssfeed.addFeed("CSS Drive", "http://www.cssdrive.com/index.php/news/rss_2.0/") //Specify "label" plus URL to RSS feed
cssfeed.displayoptions("date") //show the specified additional fields
cssfeed.setentrycontainer("div") //Wrap each entry with a DIV tag
cssfeed.filterfeed(10, "date") //Show 10 entries, sort by date
cssfeed.entries_per_page(1)
cssfeed.init()
Then, to style that text in general, you'd do something like the following in your CSS:
Code:
#example1 div{
color: brown;
}
Bookmarks