XF 2.2 How to remove the forum name on top of front-page?

ArtG

Well-known member
Licensed customer
Hi -

How can I remove the forum name from the front page? It seems redundant given the logo is just above it.

Screenshot 2022-11-17 at 4.09.01 PM.webp
 
Change the [data-template = "forum_list"] to the template name you want to remove it from.

It's probably whats_new_posts .
 
Less:
[data-template = "forum_list"]
{
    .p-title-value
    {
        visibility: hidden;
    }
}

In case you're wondering why I used visibility: hidden instead of display: none , with the latter it causes the buttons to move to the left where the title was.
Where does someone add this code? I'm hosted with XenForo. Thank you!
 
Back
Top Bottom