Apply CSS styling to sticky / pinned threads

Apply CSS styling to sticky / pinned threads

Sorry to bump an old thread, but since you referred me here @Brogan. I have added
Code:
.discussionListItem.visible.sticky,
.discussionListItem.visible.sticky .posterAvatar,
.discussionListItem.visible.sticky .stats {
background: @inlineMod;
font-style: italic;
}
.discussionListItem.visible.sticky .title a:link,
.discussionListItem.visible.sticky .title a:visited {
color: ##090808;
}
.discussionListItem.visible.sticky .lastPostInfo .username {
color: ##090808;
}

And it works fine. What I need to change the color of is the Thread Starter Name, Time, Replies - Views Text - see selected read images in the attached image
Screen Shot 2014-09-21 at 5.32.58 AM.webp
 
The easiest thing to do is to use a browser inspection tool - most of them have them as standard now.

If you use Chrome, right click on the element you want to check and select Inspect element.
Then you will see something like this in the console window:
View attachment 84539

That then gives you the class names to be able to apply styling following the examples.
Sorry, I'm useless at this stuff. I added

Code:
.discussionListItem.visible.sticky .posterDate muted {
color: red;
}

But it did nothing?
 
Back
Top Bottom