2
Using the Marquee tag:
<marquee>
Your text here
marquee>
Full explanationHere is an example from one of my sites for the 'new members block':
<div class="blockContent"><marquee height="100" direction="up" scrollamount="1" onMouseover="this.scrollAmount=0" onMouseout="this.scrollAmount=1">
<table cellspacing="1" class="outer">
<{foreach item=user from=$block.users}>
<tr class="<{cycle values="even,odd"}>" valign="middle">
<td align="center">
<{if $user.avatar != ""}>
<img src="<{$user.avatar}>" alt="" width="32" /><br />
<{/if}>
<a href="<{$xoops_url}>/userinfo.php?uid=<{$user.id}>"><{$user.name}>a>
td>
tr>
<{/foreach}>
table>
marquee>
<hr size="1" color="#cccccc">
div>