Add Indicator after node title

Add Indicator after node title

I knew it was too good to be true. :D

Try pasting the following in extra

Code:
.subForumsMenu .node .unread .nodeTitle:after {display: none;}

Hi Shelly
I tried adding this code, but now, no more display at all even in the main forum.
How can i remove the "new message" from the subforum
or how can i add the "new message" to a specific subforum (not all the subforum)
Thanks
 
I'm not sure what you mean. What your trying to achieve and would need a link to your forum if you could provide it here. What are you trying to hide and which sub-forum manager add-on are you using?

I'm currently doing something else atm so i may not reply right away.
 
Still not sure what you are trying to do here. Nothing is showing since you added the display: none; if your wanting to add new to the sub forum area you will need to add the code in the release part or add an Node_ID if you want to be specific on what your wanting to do in the "La vidéothèque" area
 
You can check the section "Le café du commerce, jeux et vidéos" a the bottom of the page here :
http://www.forum-des-portables-asus.fr/www/forum/
(guest will not see "new message")

okay. Here's the code to style per forum ID. Your ID will differ and you'll have to modify the ID accordingly and style your preference.

Code:
.nodeInfo .node_181 .nodeTitle:after, body .subForumsPopup .blockLinksList .node_181 .nodeTitle a:after {
background-color: green;
content: "your custom message in here and styling it to your preference";
color: white;
border-radius: 2px;
margin-left: 5px;
padding: 3px 5px;
font-size: 9px;
}
 
Still not sure what you are trying to do here. Nothing is showing since you added the display: none; if your wanting to add new to the sub forum area you will need to add the code in the release part or add an Node_ID if you want to be specific on what your wanting to do in the "La vidéothèque" area

In fact the problem is, when a new message is posted in Videotheque > Musique, all the subforum from the Videothèque are taggued with the "new message".
What i was looking for is : Only Tag "La vidéothèque" when a new message is posted in it or its subforum.
 
I am not sure we understand each other :)
I don't want to specify a specific "new message" to a forum or subforum.
Just need to avoid displaying the "general" "new message" to subforums :) (currently displayed)
Don't know if i am clear enough.
Thanks for your support Shelley
 
I am not sure we understand each other :)
I don't want to specify a specific "new message" to a forum or subforum.
Just need to avoid displaying the "general" "new message" to subforums :) (currently displayed)
Don't know if i am clear enough.
Thanks for your support Shelley

This should stop them display in subforums.
Code:
 body .subForumsPopup .blockLinksList .unread .nodeTitle a:after {display:none}
 
This should stop them display in subforums.
Code:
body .subForumsPopup .blockLinksList .unread .nodeTitle a:after {display:none}

Hi Shelley, sadly not, it does not even show in main forum.
Regards.

Here is my original css :

Code:
.LoggedIn .nodeInfo.unread .nodeTitle:after
{
background-color: #f7d09d;
content: "Nouveau message";
color: #6d3f03;
border-radius: 3px;
margin-left: 5px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-khtml-border-radius: 3px;

margin-right: -310px;
padding: 1px 6px;
font-size: 9px;
}
 
Hi Shelley, sadly not, it does not even show in main forum.
Regards.

Here is my original css :

Code:
.LoggedIn .nodeInfo.unread .nodeTitle:after
{
background-color: #f7d09d;
content: "Nouveau message";
color: #6d3f03;
border-radius: 3px;
margin-left: 5px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-khtml-border-radius: 3px;

margin-right: -310px;
padding: 1px 6px;
font-size: 9px;
}

worked for me. Which subforum manager are you using?
 
I am using this extra css :

Code:
body .subForumsPopup
{
    margin: 0;
    float: none;
}
body .subForumsPopup .blockLinksList
{
    display: inline-table;
    width: 100%;
    box-sizing: border-box;
    word-spacing: -10px;
    background-color: transparent;
    border-bottom: 0px !important;
}
body .subForumsPopup .blockLinksList > li
{
    display: inline-block;
    width: 25%;
    word-spacing: 0;
    vertical-align: top;
}
body .subForumsPopup .blockLinksList .nodeTitle
{
    font-weight: normal;
}
body .subForumsPopup .blockLinksList .unread .nodeTitle
{
    font-weight: bold;
}
body .subForumsPopup .blockLinksList .nodeTitle a:before
{
    content: "";
    background: @primaryLighter;
    border-radius: 4px;
    margin-right: 5px;
    display: inline-block;
    height: 4px;
    width: 4px;
    vertical-align: middle;
}
body .subForumsPopup .blockLinksList li.node > .unread .nodeTitle a:before
{
    background: @primaryMedium;
}
.navTabs .navTab.donations.PopupClosed .navLink {
    color: #f9bc6d!important;
}
 
As a guest i'm unsure as i can't see so guessing here.

Add a display: none; to

Code:
body .subForumsPopup .blockLinksList .nodeTitle a:before
 
As a guest i'm unsure as i can't see so guessing here.

Add a display: none; to

Code:
body .subForumsPopup .blockLinksList .nodeTitle a:before

Sadly does not work, when a new thread is posted, with your code, it unmarks all the forums and the main one too
 
Top Bottom