How can I change the category side box menu to generate an unordered list instead of a anchor and a break?
right now the template generates this html
I would like it to generate this:Code:<a href="link">Music</a> <br />
Is this possible?Code:<ul> <li><a href="link">Music</a></li> <li><a href="link">Movies</a></li> <li><a href="link">Books</a></li> </ul>
Thanks



