Quote Originally Posted by garycwood84 View Post
Thanks, @Acorn.
I've been experimenting with https://rss.bloople.net/, which seems to do what I need. I'm just creating a box on my site and setting it as a placeholder for the code that that tool generates. It works fine to get the news articles from my blog. However, I need to be able to style it. At the bottom of the page Bloople page, once you've created the feed, it says you can style it as follows:

But I don't know how to create these styles in Xara. I know you're pretty good at coding... any chance you can point me in the right direction, please?
Happy to help but can we work on a common RSS Feed so we can compare like-for-like?

I chose http://feeds.bbci.co.uk/news/rss.xml for a starter.

I used the IFRAME output, copied into the Placeholder body of a box. You need to add width and height: <iframe src="//rss.bloople.net/?url=http%3A%2F%2Ffeeds.bbci.co.uk%2Fnews%2Frss.xm l&showtitle=false&showempty=true&type=html" width="100%" height="100%"></iframe>.

The final wrinkle to be able to use CSS on the IFRAME is to give it an ID: id="bbcnews": <iframe src="//rss.bloople.net/?url=http%3A%2F%2Ffeeds.bbci.co.uk%2Fnews%2Frss.xm l&showtitle=false&showempty=true&type=html" width="100%" height="100%" id ="bbcnews"></iframe>.

No point in tweaking CSS until we are aligned.

There probably has to be a Refresh button added at some point.

Acorn