Display a notice in specific threads or forums

Display a notice in specific threads or forums

Most likely floating notices are implemented with different classes.

As a quick fix, try adding !important to the CSS - both sections.

Less:
.ctaThread3
{
    display: none !important;
}

[data-content-key="thread-3"]
{
    .ctaThread3
    {
        display: block !important;
    }
}
 
Top Bottom