в ipb_styles.css добавить у самый низ:
.postbitbox3_online {
background: #449C41;
color: #fff;
padding: 4px;
height: 18px;
-webkit-border-bottom-right-radius: 3px;
-webkit-border-bottom-left-radius: 3px;
-moz-border-radius-bottomright: 3px;
-moz-border-radius-bottomleft: 3px;
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
border-left: 2px solid #449C41;
border-right: 2px solid #449C41;
cursor: default;
margin: 0px -1px;
}
.postbitbox3_offline {
background: #DD4242;
color: #fff;
padding: 4px;
height: 18px;
-webkit-border-bottom-right-radius: 3px;
-webkit-border-bottom-left-radius: 3px;
-moz-border-radius-bottomright: 3px;
-moz-border-radius-bottomleft: 3px;
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
border-left: 2px solid #DD4242;
border-right: 2px solid #DD4242;
cursor: default;
margin: 1px -1px -1px -0px;
}
В userInfoPane в любое место:
<div class="postbitbox3_online"><span class="online">Online</span></div>
<div class="postbitbox3_offline"><span class="offline">Offline</span></div>