how to remove the "Forum Title" ?

erich37

Well-known member
how to remove the "Forum Title" from the Forum-list (class=titleBar), but still remain the Title as the site-title in the website-header ?

removing this, will it negatively impact SEO ?

Many thanks!
 
thanks Brogan!

alternatively, what is the way to center the Title at the page?
Just put a center onto the css of "class=titleBar" ?
where do I find this CSS ?

Thanks again!
 
You could add this to EXTRA.css:
Code:
.titleBar h1 {
text-align: center;
}

But that will affect everything using that class.

Otherwise change the first line of the forum_list template to this:
<xen:h1><div style="text-align:center">{$xenOptions.boardTitle}</div></xen:h1>
 
Top Bottom