hola a todos, antes todo decir que soy de esos que no tengo ni idea de php ni similar, pero me estoy atreviendo a montar un sitio con una aplicacion prefabricada llamada osdate. ante todo perdonar si dijo o escribo una barbaridad repito no tengo mucha idea. Bueno al grano quisiera saber como cambiar un modulo que tiene con noticias para que esas noticias sean en scroll, o sea en movimiento de abajo a arriba. las noticias se escriben desde el panel de administracion. Por si les vale de algo este es el codigo del archivo .tpl de ese modulo
{strip}
<table width="180" border="0" cellpadding="0" cellspacing="0" >
<tr>
<td width="180" valign="top">
<table class="boxheadbg" width="180" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="6"></td>
<td width="174">
{lang mkey='news'}
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="boxconbg" width="180" valign="top">
<table width="180" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="6"></td>
<td width="100%">
<table class="table" width="100%" cellspacing="{$config.cellspacing}" cellpadding="{$config.cellpadding}">
<tr>
<td>
{foreach item=row from=$news_data}
<span class="newshead">{$row.header|stripslashes}</span><br/>
<span class="newsdate">{$row.date}</span><br/>
<span class="newstext">{$row.text|stripslashes}</span>
{if $config.enable_mod_rewrite == 'Y'}
<a href="news{$row.newsid}.htm">{lang mkey='more'}</a>
{else}
<a href="index.php?page=shownews&newsid={$row.new sid}">{lang mkey='more'}</a>
{/if}
<br/>
<br/>
{/foreach}
</td>
</tr>
</table>
<center>
{if $config.enable_mod_rewrite == 'Y'}
<a href="allnews.html">{lang mkey='all_news'}</a>
{else}
<a href="index.php?page=allnews">{lang mkey='all_news'}</a>
{/if}
</center>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="boxfootbg" width="180" valign="top"></td>
</tr>
</table>
{/strip}
Les estare eternamente agradecidos si me dicen como se modifica o que hay que poner para conseguir ese efecto de scroll, muchas gracias