XF 1.2 Read/Unread Opacity on Subforum listing

Sheldon

Well-known member
Meh... lost in the sauce.

Currently I have this:
jzf5.webp

As you can see, there are two areas that have new posts (by the bold text), the Green Bay Packer one and the Tampa Bay Buccaneer one.

No matter what code I have tried, I cannot get it to just highlight that area alone with opacity 1 and have it show.

Here is the code for the individual listings:

Code:
.node.forum.level-n.node_59 {
    background-image: url("/images/helmet/packers.png") !important;
    background-repeat: no-repeat;
    background-size: 24px auto;
    line-height: 20px;
    opacity: 0.5;
}

And the opacity I have tried (among many others) was this:
Code:
.unread .node_59 {
    opacity: 1 !important;
}

Which at first, gave me this:
Screenshot_1.webp

Code:
.unread .node_58 {
    opacity: 1 !important;
}
However, adding that code to others, say 58 and 48, I now get this:
Screenshot_2.webp

I am likely just overlooking something, but I thought I have tried absolutely everything....

If anyone can help out, please... hah. I am begging. I have stared at this a little to long. If you need to see the site to attempt to help, PM me for site address.
 
Meh... lost in the sauce.

Currently I have this:
I am likely just overlooking something, but I thought I have tried absolutely everything....

If anyone can help out, please... hah. I am begging. I have stared at this a little to long. If you need to see the site to attempt to help, PM me for site address.
I use the below code to set the overall unread opacity to 1.0 in my forums.

Code:
/* Adjust opacity on new message icons in forum list */
.node .forumNodeInfo.unread .nodeIcon, .node .categoryForumNodeInfo.unread .nodeIcon {
        opacity: 1.0 ;
        }

I haven't tried it with the sub-forum listings yet - so you may need to add those into it also.

Maybe adding the
Code:
.node .subForumList.unread .nodeIcon
in would work.
 
Last edited:
I have the main node icons, that isn't a problem at all...

No matter what code I use, or attempt to use, I am just not getting the look I want in the subforums.
 
Top Bottom