XF 2.1 Thread title background

The option is not entirely correct and it will work on every page, and not specifically in the thread. In addition, a username with a date for such an option will not be taken.
1589121955848.png

Less:
[data-template="thread_view"] .p-body-header {
    background: #185886;
    color: white
}
or you can use, more correct
Less:
body[data-template="thread_view"] {
    .p-body-header {
        background: #185886;
        color: white
    }
}
 
Last edited:
1589127303986.png
Less:
body[data-template="thread_view"] {
    .p-body-header {
        background: url("https://i.imgur.com/RVco2RE.jpeg");
    }
}
 
Top Bottom