Style Guide for Parsing RSS
Here are the styles used to format the RSS feed. If you omit any of these fields they will just follow the default styles you have set for your page. You can use these if you would like to add additional styles to the list of blog entries. I have provded a few examples of how you can manipulate these styles.
The script generate a list that looks like this:
<ul class="rss_feed">
<li class="rss_entry"><a href="http://link.html" class="rss_link">Title</a></li>
</ul>
ul.rss_feed
You can remove the list bullets by using this code:
ul.rss_feed {
list-style: none;
margin:10px;
padding:0;
}
li.rss_entry
You can use an image instead of a bullet by using this code:
li.rss_entry {
list-style-image: url(/images/button.gif);
margin:10px;
padding:0;
}
a.rss_link
a.rss_link {color:#FF7F50;text-decoration:underline;font-weight:bold;}
a.rss_link:hover{color:#8B0000;text-decoration:underline;font-weight:bold;}
