twitchee27
13 years agoExpert
Adding Bullets to Custom Component
We have a custom component that displays message subjects based on a specific tag, and I am trying incorporate a bullet point on each subject to clearly delineate between them within the component. I am unable to use the unordered list tag to do this, and am suspecting the <#list tag is preventing it. Here is the code, any ideas?
<style type="text/css"> #RecentVideos li a { line-height: 18px; } </style> <div style="padding-left:10px"> <ul id="RecentVideos" > <#assign result=rest("/tagging/for/tags/text/training%20video/messages/recent?restapi.response_style=view&page_size=5")> <#list result.messages.message as message> <li> <a href="${message.@view_href}"> ${message.subject} </a> </li> </#list> </ul> </div>