XF 1.5 can't find CSS for unread indicator

vbuser

Active member
I customized the icons for xenforo-ui-sprite.png. I've tried using firebug to find the CSS but won't work.
Code:
.LoggedIn .discussionListItem .unreadLink, .LoggedIn .discussionListItem .ReadToggle {
  background: rgba(0, 0, 0, 0) url("styles/default/xenforo/xenforo-ui-sprite.png") no-repeat scroll 10000px 0;
  display: block;
  height: 10px;
  left: 5px;
  overflow: hidden;
  position: absolute;
  text-indent: 9999px;
  top: 10px;
  white-space: nowrap;
  width: 10px;
}

FIXED: CHANGED CSS
Code:
.LoggedIn .discussionListItem .unreadLink, .LoggedIn .discussionListItem .ReadToggle {
  background: rgba(0, 0, 0, 0) url("styles/default/xenforo/custom/xenforo-ui-sprite.png") no-repeat scroll 10000px 0 !important;
   background-position: -5px -42px !important;
}
 
Last edited:
Top Bottom