XF 1.3 "New" icon in thread list - text missing, size wrong

Temexter

Member
I'm trying to change the default new post icon in thread list.

I tried to make it in the same way as new icon in forum list:
EXTRA.css:
Code:
.nodeInfo.unread .nodeTitle:after
{
   background-color: #eb0909;
   content: "NEW";
   color: white;
   border-radius: 2px;
   margin-left: 9px;
   margin-bottom: 3px;
   padding: 1px 5px;
   font-size: 9px;
}
Result:
Capture.webp

So i edited discussion_list.css:
Code:
.LoggedIn .discussionListItem .unreadLink,
.LoggedIn .discussionListItem .ReadToggle
     {
       background-color: #eb0909;
       width: 24;
       content: "NEW";
       color: white;
       border-radius: 2px;
       margin-left: 9px;
       margin-bottom: 3px;
       padding: 1px 5px;
       font-size: 9px;
     }
Result:
Capture.webp
Whats missing or wrong?
 
Last edited:
Top Bottom