Is it possible to remove the board name?

fredrikse

Active member
Hi,

I wonder if it's possible to remove the board name ("XenForo Community") in the picture? I feel it's a bit too redundant when I have the name well displayed in the logo as well.

boardname.webp
 
This has been asked a few times before - not sure what's normally recommended, but this should work.

Add the following to EXTRA.css:

Rich (BB code):
.forum_list .titleBar
{
display: none;​
}
 
This has been asked a few times before - not sure what's normally recommended, but this should work.

Add the following to EXTRA.css:

Rich (BB code):
.forum_list .titleBar
{
display: none;​
}
If this is done, will it effect the title being displayed in the tab of the browser or in search engines since it is the title tag of the page?
 
Nope.

The div containing the <h1> tag is hidden, but it doesn't affect the content in <title> tags or anywhere else.

In fact, Google will still be able to see the <h1> tag as it indexes hidden content, but it won't be visible to your members.
 
Top Bottom