vote up 2 vote down star

OK, I don't understand this at all.

This is the BBC's RSS feed ( http://newsrss.bbc.co.uk/rss/newsonline_uk_edition/front_page/rss.xml)

If you view it in ie6 it appears to be styled with a custom stylesheet (nosol.xsl)

If you view it in firefox or ie7 the browser's default rss feed styling is used.

I tried to do something similar myself with this rss feed: http://www.bbusl.com/worksregion/4/rss.xml

It worked as planned on the Dev server. However, once I put it live onto our production server, the ie6 stylesheet is appearing when you view the rss feed in firefox !?!

How do I make it so the custom stylesheet only appears in ie6? What's the difference that's made it work like that on the dev server and not the live production server?

flag

2 Answers

vote up 5 vote down check

I ran your feed through W3C's feed validator. I configured Firefox to use Fiddler as a proxy to allow me to intercept and tinker with the response sent by your server before it was displayed by my browser.

It turns out the stylesheet is getting applied because of the first validation error:

line 6, column 28: link must be a full and valid URL: /worksregion/4/rss.xml [help]

<link>/worksregion/4/rss.xml</link>
                            ^

When I changed this to the full URL for your feed the default Firefox RSS feed styling was applied as you expected to see.

link|flag
Thanks! The live server was missing a variable containing the URL root. It's now fixed. – Mark Justin Mar 24 at 11:38
vote up -1 vote down

You need a server-side script that would show one or the other, depending on the user-agent.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.