Resource icon

New Post Indicator v2

abbychase

Active member
abbychase submitted a new resource:

Add "new" indicator - A modified version of shelley's

With her help and messing around myself I have gotten:​
WgZDcBS.png
Add the following to your extra.css:​
Code:
.node .unread .nodeTitle:after {
background-color: #65a5d1;
content: "NEW";
color: white;
border-radius: 2px;
-webkit-border-radius: 2px;...

Read more about this resource...
 
how would i get this to only show up for logged in users and on thread titles not node titles?
 
Looks great for top-level forums but not so great for subforums displayed on the forum list page. It makes it look like the New flag is for the forum to the right of it instead of the left.

This will float it on top-level forums but put it directly to the right of the title on a subforum list:

Code:
.node .unread .nodeTitle:after {
background-color: red;
content: "NEW";
color: white;
border-radius: 2px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-khtml-border-radius: 2px;
float: right;
margin-right: 10px;
padding: 1px 5px;
font-size: 9px;
}

.node .unread .subForumList .nodeTitle:after {
float: none;
margin-right: 0px;
margin-left: 5px;
}
 
How can I show this only to registered users, because when you are not logged in it shows on every forum and its confusing for users that didn't register I guess.
 
Top Bottom