@ ezzzy.... The chat is normally in the index_body.html file. Can you post your code in that file, not the forumlist_body.html?
And the smilies for prosilver are here:
viewtopic.php?p=64264#p64264@ strahd1970.... That almost looks like a subsilver2 type of style but I'm sure it's a prosilver type.
For your Who's Online section, at the top of your chat_body.html page you should have this:
- Code: Select all
<!-- IF S_WHOISONLINE -->---
<h4>{L_ONLINE_LIST}:</h4>
<!-- BEGIN whoisrow -->
<div>
<div class="inner">
<div class="user"><img src="{T_IMAGESET_PATH}/{whoisrow.USER_STATUS}.png" class="online_img" /> {whoisrow.USERNAME_FULL}</div>
</div>
</div>
<!-- END whoisrow -->
---{LAST_TIME}---{DELAY}---{LAST_POST}
<!-- ENDIF -->
And at the bottom of your page it should read like this:
- Code: Select all
<div class="users" id="whois_online">
<h4>{L_ONLINE_LIST}:</h4>
<!-- BEGIN whoisrow -->
<div>
<div class="inner">
<div class="user"><img src="{T_IMAGESET_PATH}/{whoisrow.USER_STATUS}.png" class="online_img" /> {whoisrow.USERNAME_FULL}</div>
</div>
</div>
<!-- END whoisrow -->
</div>
It looks like you were missing the top part. They should both be the same as above. See if that works.
The Seconds showing at the footer is missing the time amount. Is yours written like this?
- Code: Select all
<div id="author">{L_DETAILS}
<img src="{T_IMAGESET_PATH}/act_indicator.gif" id="act_indicator" />
<strong>â?¢ {L_UPDATES} <span id="update_seconds">{DELAY}</span> {L_UNIT}</strong>
</div>
And it looks like you need a space after your chat. You should add a <br /> after the last </div> in that page.
- Code: Select all
</div>
<br />