Dirk

Registered
Hi,
how to hide or delete the area between the red arrows.
Only on the forum overview.

Greetings Dirk

9366
 
You can add this to hide it on the forum_list:

Code:
[data-template="forum_list"] .p-body-header {
    display: none;
}

Ideally, you'll want that section there on other pages.
 
Here's how I solved this, works for me.

Line 1 of the forum_list template, where it has:
Code:
<xf:h1>{$xf.options.boardTitle}</xf:h1>
Change it to:
Code:
<xf:h1></xf:h1>
With this method you can also put anything there you want, like:
Code:
<xf:h1>Hello World!</xf:h1>
For example. And you can change it and customize it any time, to fit occasions. Like:
Code:
<xf:h1>Happy Birthday Dirk!</xf:h1>
 

Pre-Sale Questions

If you have any questions or concerns you want to ask before you make a purchase don't hesitate to use one of our multiple support channels for your convenience.

Back