XF 1.5 Replacing the online markers against images

Since there is no native CSS tag for offline, you would have to resort to an add-on to do that.
For the Online, you should be able to address the CSS designator for it and assign an image.
Code:
.messageUserBlock div.avatarHolder .onlineMarker
 
Hi
For offline i have this code in EXTRA.css
Code:
/* Start Xmas messageUserInfo Enhancement Start Xmas messageUserInfo Enhancement Start */

.messageUserBlock .helper {
  background: url("@imagePath/xenforo/icons/xmas-messageuserinfo-balls2013.png") no-repeat scroll 0 0 transparent;
  display: block;
  height: 47px;
  left: -7px;
  position: absolute;
  top: 0;
  width: 135px; }

/* end Xmas messageUserInfo Enhancement Start Xmas messageUserInfo Enhancement end */

and ist works great!

but for online????
this =
a01.webp

looks this =
a02.webp

*hmmmm
 
Well, apparently it doesn't work so great then. ;)

You are assigning an image to the default block and then not removing it when the online is being displayed. That's why I said it would best be solved by an add-on. I do wish that XF had the ability to show online/offline/hidden by default (there was an add-on that did that but I don't think it is supported any longer).
 
Last edited:
Top Bottom