Forums Home  Search  Register  Login  Member List Recent Posts
»Forums Index »Articles »Improving the XML feed display through CSS and XSLT »RSS 2.0 xml display
Author Topic: RSS 2.0 xml display (2 messages, Page 1 of 1)

bhagavathm
--
Posts: 1
Joined: Jun 30, 2010


Posted: Jun 30, 2010 01:32 AM          Msg. 1 of 2
Hi,

I have gone though your post. i have created one RSS v 2.0 feed.

but i am unable to apply styles. in my case i just want to avoid the default header with title and the "subscribe to this feed" link.

How can i Achieve this.

Thanks,
Bhagavath.
Quote:


Bhagavath

evagoras
--
Posts: 157
Joined: Mar 1, 2005

Forum Administrator


Posted: Aug 2, 2010 05:42 AM          Msg. 2 of 2
I am not sure what you mean by "default header with title and the 'subscribe to this feed' link". I suspect that you may be talking about the RSS template implemented by Firefox which shows up when you are viewing an RSS feed by default. That is a Firefox setting and there's nothing you can do about it (I think) for those users that may be coming to your site using Firefox. For other browsers that no style is implemented by default (like IE), then you CAN add css styles to your output and they will be picked up.

And I suppose, if you really want to get rid of the default header implemented by Firefox, you could try adding something like this to your output (where 'feedHeaderContainer' is the ID of the top header inserted by Firefox:

#feedHeaderContainer {
diplay:none;
visibility:hidden;
}