New Post Icon

Dixie McCall

Well-known member
Need to find add-on that places a "new" icon after node title when new post is placed in that forum. I thought I saw an add-on for this but can't find it. I'm not talking about the "new" icon on post list as I already have that working. Need one for forum list.
 
You can try this in your extral.less template
Less:
.node--unread .node-title:after {
    content: 'new';
    font-size: 90%;
    color: #fff;
    background: #f2930d;
    border-radius: 2px;
    padding: 1px 4px;
    white-space: nowrap;
}
 
LOL Yes. It's showing up now THANK YOU SO MUCH! I have to keep saving things a few times before it saves and some other odd things. Not sure what is going one but this code worked great after saved a few times. Thank you again!
 
Top Bottom