In XenForo you can hide the forum title (the big text at the top of the forum index or inside a node) in a few different ways depending on what exactly you mean. Here are the main options:
If you want to keep the title in settings (for SEO) but not show it visually:
.p-header-logo .p-header-logo--text {<br> display: none !important;<br>}<br>
This hides the text title but keeps the logo.
If you mean the title of a specific forum category/node:
.node-title[data-node-id="X"] {<br> display: none !important;<br>}<br>
Replace X with the node ID (you can see it in the forum URL when you click on the forum).
Do you want to hide the main forum title (board name at top) or the titles of individual forums (nodes/categories)?
1.
- Go to Admin Control Panel (ACP) → Setup → Options → Basic board information.
- Clear or change the Board title field.
- If you clear it completely, XenForo will not show a title text, only the logo.
- Alternatively, you can just set your logo to display instead of text.
2.
- Go to Appearance → Style properties → Header and navigation.
- Look for Logo text or Board title.
- Disable or hide it (depending on your theme settings).
3.
If you want to keep the title in settings (for SEO) but not show it visually:
- Go to Appearance → Templates → extra.less.
- Add this CSS:
.p-header-logo .p-header-logo--text {<br> display: none !important;<br>}<br>
This hides the text title but keeps the logo.
4.
If you mean the title of a specific forum category/node:
- Go to Appearance → Templates → extra.less and target that node:
.node-title[data-node-id="X"] {<br> display: none !important;<br>}<br>
Replace X with the node ID (you can see it in the forum URL when you click on the forum).
