- Katılım
- 15 Haz 2014
- Mesajlar
- 96
- Reaction score
- 109
- Puanları
- 33
- Yaş
- 42
- Konum
- istanbul
- Web sitesi
- www.definemekani.com
- PHP Versiyonu
- PHP v7.0.x
- XenForo Versiyonu
- XF 1.5.x
message_macros bu şablonda;
bu kodları bulup, hemen üzerine
bu kodları ekleyin.
daha sonra EXTRA.less şablonunun en altına
bu kodları ekleyin.
Kod:
<span class="message-userArrow"></span>
Kod:
<xf:if is="$user.isOnline()">
<div class="onlineON">Online</span></div>
<xf:else />
<div class="offlineOFF">Offline</span></div>
</xf:if>
daha sonra EXTRA.less şablonunun en altına
Kod:
/*online - offline*/
.onlineON{
background: #32CD32;
padding: 5px;
text-align: center;
border-radius: 0 0 5px 5px;
margin-top: 5px;
}
.offlineOFF{
background: #ff0000;
padding: 5px;
text-align: center;
border-radius: 0 0 5px 5px;
margin-top: 5px;
}