News Box code:
(This one works with SMF version 1.0.. scroll down for code for version 1.1)
The Code for the news box is the same as for Affiliates and Shoutbox actually
Add your text, use different font colors, even small pictures.
Just make sure whatever you put in that space is in HTML.
You can change the News Box title to whatever you wish as well
<table border="0" width="100%" cellspacing="1" cellpadding="4" class="bordercolor">
<tr>
<td class="catbg" colspan="2">News Box</td>
</tr>
<br>
<tr>
<td class="windowbg2">
<table width="100%" border="0">
<marquee direction="left" onmouseover="this.stop()" onmouseout="this.start()" scrollamount="5">
<b>
<font color=#000000>
YOUR TEXT GOES HERE
</td>
</font>
</table>
</tr>
<br>
Code for SMF version 1.1:
<table border="0" width="100%" cellspacing="1" cellpadding="4" class="tborder">
<tr>
<td class="catbg" colspan="2">News Box</td>
</tr>
<tr>
<td class="windowbg2">
<table width="100%" border="0">
<marquee direction="left" onmouseover="this.stop()" onmouseout="this.start()" scrollamount="5">
<b><font color=#000000>
PUT YOUR TEXT HERE</b></font>
</td>
</tr>
</table>
</table>