rss help....
Permalink
How would i go about customising the format of the rss feed?
I see that it automatically produces
[code
<style>
.rssSummaryList .rssItem{ margin-bottom:16px }
.rssSummaryList .rssItem .rssItemTitle{ font-weight:bold }
.rssSummaryList .rssItem .rssItemDate{ color:#999999 }
.rssSummaryList .rssItem .rssItemSummary{}
.rssSummaryList .rssSummaryListTitle{font-weight:bold}
</style>
[/code]
Im guessing that I need to create a block template.. Is there an example of how this is done?
Regards Craig
I see that it automatically produces
[code
<style>
.rssSummaryList .rssItem{ margin-bottom:16px }
.rssSummaryList .rssItem .rssItemTitle{ font-weight:bold }
.rssSummaryList .rssItem .rssItemDate{ color:#999999 }
.rssSummaryList .rssItem .rssItemSummary{}
.rssSummaryList .rssSummaryListTitle{font-weight:bold}
</style>
[/code]
Im guessing that I need to create a block template.. Is there an example of how this is done?
Regards Craig
I would also like to know how this is done. Thanks
you can just override the css within your themes css file, which may be in different locations depending on where your theme is.
if you're having trouble overriding a specific rule, try use !important:
.rssSummaryList .rssItem{ margin-bottom:16px !important; }
or you can make the rule more explicit:
#page #body .rssSummaryList .rssItem{ margin-bottom:16px; }
if you're having trouble overriding a specific rule, try use !important:
.rssSummaryList .rssItem{ margin-bottom:16px !important; }
or you can make the rule more explicit:
#page #body .rssSummaryList .rssItem{ margin-bottom:16px; }