Board Title

Yeah it's not ideal to not have one.

For example, yes, removing the Board Title will remove the title from the home page...

OhN93Sc.png


vjGg8eR.png



But it will also remove things like the browser title text which is important for Google when indexing your site.

A much more elegant way is to hide it using CSS.

For example to hide the board title from the home page, put this in EXTRA.css:

Code:
.forum_list .titleBar h1
{
display:none;
}
 
Top Bottom