RSS Feeds

RSS Feeds

by Mark Little -
Number of replies: 1
Hi,

I want to add a bullet or insert a line under each entry of the RSS Feed.

for example
  • Dell buys Allienware
  • Dell  profites rise
any ideas?
Average of ratings: -
In reply to Mark Little

Re: RSS Feeds

by David Scotson -

You can use the CSS techniques discussed here for icons to add a bullet.

Something like this should work:

.block_rss_client div.link a {
    padding-left: 20px;
    background-repeat: no-repeat;
    background-image: url(bullet.gif);
}

Ideally the list of links should actually be a list of links in the HTML. You could change that instead if you are happy with messing with the PHP.