XF 2.2 How can I change format of forum titles only in forum list on main page?

gogo

Well-known member
For example, I would like to make these titles a bit larger and always keep bold even if it's marked read.

And it only applies on the forum titles in forum main page.

How do I do it? Thanks.

1599625198848.webp
 
Solution
In that case you will need to make the selector more specific.

You can do that using the page template, like so:
CSS:
[data-template="forum_list"]
.node-title
{
    font-size: 20px;
    font-weight: 700;
}
I recommend starting a new thread if you have a different styling question.

Piggybacking on other threads just makes things messy/confusing and doesn't allow for a solution to be marked.
 
Top Bottom