If by disable you just mean style your links so they look like regular text, just use CSS to target the "a" 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 modify the look of its links with a rule such as:
Code:
<style>
#example1 a{
color:gray;
}
</style>
Bookmarks