
I have allowed myself to customize a bit different.
In index_tabbed.html I replaced the code
Code: Select all
<!-- IF S_DISPLAY_ONLINE_LIST -->
<div id="online-panel" style="display: <!-- IF S_USER_LOGGED_IN -->block<!-- ELSE -->none<!-- ENDIF -->;">
<!-- IF U_VIEWONLINE --><h3><a href="{U_VIEWONLINE}">{L_WHO_IS_ONLINE}</a></h3><!-- ELSE --><h3>{L_WHO_IS_ONLINE}</h3><!-- ENDIF -->
<p>{TOTAL_USERS_ONLINE} ({L_ONLINE_EXPLAIN})<br />{RECORD_USERS}<br /> <br />{LOGGED_IN_USER_LIST}
<!-- IF LEGEND --><br /><em>{L_LEGEND}: {LEGEND}</em><!-- ENDIF --></p>
</div>
<!-- ENDIF -->
for this one:
Code: Select all
<!-- IF S_DISPLAY_ONLINE_LIST -->
<div id="online-panel" style="display: <!-- IF S_USER_LOGGED_IN -->block<!-- ELSE -->none<!-- ENDIF -->;">
<table class="tablebg" cellspacing="1">
<tr>
<td class="cat" colspan="2"><!-- IF U_VIEWONLINE --><h3><a href="{U_VIEWONLINE}">{L_WHO_IS_ONLINE}</a></h3><!-- ELSE --><h3>{L_WHO_IS_ONLINE}</h3><!-- ENDIF --></td>
</tr>
<tr>
<!-- IF S_USER_LOGGED_IN and USER_AVATAR -->
<td valign="top" style="padding-right:6px;">{USER_AVATAR}</td>
<!-- ENDIF -->
<td class="row1"><span class="genmed">{TOTAL_USERS_ONLINE} ({L_ONLINE_EXPLAIN})<br />{RECORD_USERS}<br /> <br />{LOGGED_IN_USER_LIST}<br />{ONLINE_BOTLIST}<!-- IF LEGEND --><br />{L_LEGEND}: {LEGEND}<!-- ENDIF --></span></td>
</tr>
</table>
</div>
<!-- ENDIF -->
To get this result:
Well, I wanted to do the same in viewtopic_tabbed.html viewforum_tabbed.html and adding the code where it belongs and I got the surprise that not changes nothing.

Do I have to change some additional files?
I have another error, but only happens in viewtopic_tabbed.html
It doesn't shows some icons of the reference section
Of course, I updated cache, templates, themes, gallery and deleted the cache manually from FTP.
Thanks for your help