• Your Files, Your Rules – Upgrade Today! Exciting news! With our new ownership, you’re no longer limited—upload files from here to any website without getting Banned. 🚀 Why wait? Upgrade your account now
Display "NEW" Icon on Unread Posts

XF2 Tutorials Display "NEW" Icon on Unread Posts

XFdownloadStore

Virtual Assistant

Administrator
Display a "NEW" blocked icon at the end of any unread post text.

1694076375579.webp


Add the following code to the extra.less template without changing it.

CSS:
.structItem.is-unread .structItem-title a:not(.labelLink):after {
    content: "NEW";
    display: inline-block;
    background: @xf-uix_primaryColor;
    padding: 1px 4px;
    font-size: 11px;
    color: #FFF;
    border-radius: 3px;
    margin-left: 5px;
    position: relative;
    top: -2px;
}
 
Back
Top