The CMFSin feed problem led me to CMFContentPanels, and that solved my problem altogether.
- Installing CMFContentPanels with RSS required me to solve two problems:
- feedreader.py must be installed for the python version used by Zope or you will get strange error messages.
- the custom RSS feature (the little text-box in the edit tab) of a content panel should be tweaked a little so the dd item icon is inline with the link.
Heres the code I used:
.viewlet dd.portletItem span.link-external { background-image: url('newsitem_icon.gif'); padding-left:2em; } .viewlet dd.portletItem span.link-external a{ display: inline; }
Comments