XF 2.0 Adding color to a thread title

Try this mate? Replace ID with thread ID.
Code:
.js-threadListItem-ID .structItem-title a
{
color: green;
}

You can actually have some fun with this, thanks for the idea.

Code:
.js-threadListItem-ID .structItem-title a
{
color: white;
font-family: Comic Sans MS;
font-weight: bold;
font-size: 15;
background-color: #1ab7ea;
background-image: ;
background-repeat: ;
text-transform: uppercase;
}
 

Attachments

  • test.webp
    test.webp
    5.6 KB · Views: 54
Last edited:
Try this mate? Replace ID with thread ID.
Code:
.js-threadListItem-ID .structItem-title a
{
color: green;
}

You can actually have some fun with this, thanks for the idea.

Code:
.js-threadListItem-ID .structItem-title a
{
color: white;
font-family: Comic Sans MS;
font-weight: bold;
font-size: 15;
background-color: #1ab7ea;
background-image: ;
background-repeat: ;
text-transform: uppercase;
}

Perfect! Thank you.
 
Top Bottom