XF 1.5 What CSS .class / #id I can use to add custom styling?

rdn

Well-known member
What CSS .class or #id,
I can use to add custom styling for thread listing Sticky and Closed thread?
Like strike-through closed thread then change font color for Sticky threads or add background.

Thanks!
 
Really depends on what you want to change. It'll all branch from these though:

Sticky:
Code:
.discussionListItem.sticky

Closed:
Code:
.discussionListItem.locked

If you want to change font color, or strikeout the title you'd use:

Sticky:
Code:
.discussionListItem.sticky .title

Closed:
Code:
.discussionListItem.locked .title
 
  • Like
Reactions: rdn
Top Bottom