XF 2.2 How to change the background of Similar Threads block without affecting thread list?

gogo

Well-known member
For example, if I added the following code:

Code:
.structItemContainer {
    background: red;
}

The Similar Threads will become this:

1614219909156.png

But the color change also affect Thread List block.

How do I specify it to Similar Threads only? I can't seem to find a tag in code for similar threads..
 
I found I could do this by the following code:

Code:
[data-widget-definition="xfes_similar_threads"] .block-container {
    background: red;
}
 
Top Bottom