Status indicator online or offline

Status indicator online or offline

SyTry

Well-known member
SyTry submitted a new resource:

Status indicator online or offline - Status indicator

Hi,

Today I share a tutorial under xenForo 2.0 : Status indicator online or offline !

In your template message_macros find :
Code:
<span class="message-userArrow"></span>

Add this before :
Code:
<xf:if is="$user.isOnline()">
    <div class="onlineON">Online</span></div>
<xf:else />
     <div class="offlineOFF">Offline</span></div>
</xf:if>

Add this in your template EXTRA.less :
Code:
/*online - offline*/
.onlineON{
    background: #32CD32;
    padding...

Read more about this resource...
 
Thank you for this simple but effective modification :)

I suggest a slightly different bg color for the offline status such as #ff6666 as it's less intrusive.

Thanks again!
 
Top Bottom