.is-unread .structItem-title {
font-weight: 700;
}
I think one way of approaching it is to add a font color line to this section of code.i did a code inspect and tried to modify some css to see which class was responsible for that and found it a bit difficult even just tried for around 15 min
.is-unread .structItem-title {
font-weight: 700;
color: #3dcc77;
}
this may work if not this can work as i tried locally to apply directly a attribute and workedI think one way of approaching it is to add a font color line to this section of code.
So something a little darker just to help differentiate it more, like this:
Code:.is-unread .structItem-title { font-weight: 700; color: #3dcc77; }
I haven't tested it yet, but I think it should work.
.is-unread .structItem-title a {
font-weight: 700;
color: #0be763;
}
That colour should work out nicely. I’ll give it a go myself when I’m back at my PC.this may work if not this can work as i tried locally to apply directly a attribute and worked
and for me this color looks betterCSS:.is-unread .structItem-title a { font-weight: 700; color: #0be763; }
#0be763 for unread ones
yeah look good to me now. If possible you can apply same change on main categories of forum also.Okay, so what I did was lighten the unread thread titles a bit. From my view, this gives a lot more distinction without it being a major change to the colour.
I compared a before and after side by side, and it seems distinct enough to me.
What do you think?
It looks like it's already applied to that. It might be hard to tell because it's a subtle change.yeah look good to me now. If possible you can apply same change on main categories of forum also.