R rdn Well-known member Feb 21, 2016 #1 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!
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!
Jake B. Well-known member Feb 21, 2016 #2 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 Upvote 0 Downvote
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
P Paul B XenForo moderator Staff member Feb 21, 2016 #3 There's an old guide here for styling sticky threads: https://xenforo.com/community/resources/apply-css-styling-to-sticky-pinned-threads.334/ Upvote 0 Downvote
There's an old guide here for styling sticky threads: https://xenforo.com/community/resources/apply-css-styling-to-sticky-pinned-threads.334/
R rdn Well-known member Feb 21, 2016 #4 Works Great, Thanks a lot Jake. Too lazy to inspect element . Thanks also Brogan Upvote 0 Downvote