You can hide the images inside the ticker by using CSS, speficially, by targeting the "img" element of your RSS ticker containers based on the laters' ID attributes. For example, lets say this is your first ticker:
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()
It has an ID attribute of "example1", so in your CSS, you can hide the images with a CSS rule such as:
Code:
<style>
#example1 img{
display:none;
}
</style>
Bookmarks