XF 1.4 Removing Header

Connor Smith

Active member
How can I remove the title in my node list. I want rid of this:
E2qfObe.png
 
Hi,

If you want to remove this only on the node list, remove the code above and add this:
Code:
.forum_list .titleBar h1
{
    display: none;
}

Maru's code will remove the element anywhere on your site, as for example here:

Screenshot_1.webp
 
Top Bottom