XF 2.1 Thread title background

maxpower

Member
Licensed customer
How do I change the background of my threads titles so they aren't transparent? This is for the default style

1586022065358.webp
 
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");
    }
}
 
Back
Top Bottom