7
The block comes from your WF-Downloads module. The template that creates it is in this file: /modules/wfdownloads/templates/blocks/wfdownloads_block_new.html You'll need to edit it, and remove the
le="color: #000000"><?php <ul> <li> </li></ul>
tags This is the original template:
le="color: #000000"><?php <ul> <{foreach item=download from=$block.downloads}> <li> <{$download.date}> <a href="<{$xoops_url}>/modules/<{$download.dirname}>/singlefile.php?cid=<{$download.cid}>&lid=<{$download.id}>"> <{$download.title}> </a> </li> <{/foreach}> </ul>
If you want to do some more modifications, you'll need to refresh your
HTML know-how....