1

Possible Duplicate:
A simple program to CRUD node and node values of xml file
DOM Remove Child from RSS XML

I am using fetch rss right now to display 1 new article from an RSS feed on my homepage. I would like to reduce the size of my homepage, but unfortunately the feed often posts large images which slow it down. Is there a way to modify one of the existing RSS feed modules (or fetchrss) or write a new one that will remove images from the feed before posting? Thanks

Community
  • 1
  • 1
skkishor
  • 21
  • 3

1 Answers1

0

You can set all tag NOT to display by adding CSS class:

#rss_container img {
  display: none;
}
Raptor
  • 53,206
  • 45
  • 230
  • 366