try this mod i did it solve the problem:
open index.php
find :
Code:
require_once('./includes/functions_bbcodeparse.php');
add below it:
Code:
$s_num=60; //change that value to # of chars between news
find:
Code:
$new['comments'] = parse_bbcode($new['comments']);
add below it:
Code:
//number of spaces between news
for($i=0;$i<$s_num;$i++)
$new['comments'] .=" ";
modify those templates:
Code:
1)
add to the END of "danews" template
<b>Welcome to our newest member : </b><b><font color=red>$newusername</font></b><br />
<tbody id="collapseobj_news" style="">
<tr>
<td class="alt$alt" align="center" cellpadding="0">
<table border="0" width="80%">
<tr>
<td><marquee>
2) change danews_news template to:
$new[comments]
3)add to the end of danews_fin
</tr>
</table>
</td>
</tr>