For the first time I noticed today that my threads have the content class "thread_online". Threads on xenforo.com have the content class "thread_view". Now I know why these thread alert icons doesn't show up because they show only up if the content class of a thread is "thread_view". And this is the CSS for these thread alert icons:
So why have my threads the content class "thread_online" and not "thread_view"?
Code:
.thread_view .threadAlerts .icon
{
float: right;
width: 16px;
height: 16px;
margin-left: 5px;
background: url('@imagePath/xenforo/xenforo-ui-sprite.png') no-repeat -1000px -1000px;
}
.thread_view .threadAlerts .deletedAlert .icon { background-position: -64px -32px; }
.thread_view .threadAlerts .moderatedAlert .icon { background-position: -32px -16px; }
.thread_view .threadAlerts .lockedAlert .icon { background-position: -16px -16px; }
So why have my threads the content class "thread_online" and not "thread_view"?