If you scroll almost to the bottom if the script demo page and look for the section under "Styling your RSS entries", you'll see this CSS snippet;
Code:
.titlefield{ /* CSS for title field in general */
font-weight: bold;
}
.labelfield{ /* CSS for label field in general */
color:brown;
font-size: 90%;
}
#example1 .datefield{ /* CSS for date field of the RSS feed with id="example1" */
color:gray;
font-size: 90%;
}
The part in red specifically targets the RSS with id #example1, while the rest will style all RSS feeds (classes - with the . in front - can be used on multiple elements, ids - with the # in front - must only be used on one element)
If you need more help, please provide a link to your page with more specific styling requirements.
Bookmarks