XF 2.2 Removing the board name from our homepage

Graham Smith

Active member
Our board name is well advertised in our header logo, so there's no need to show it on our homepage.

I looked on this forum and found an old post which said put this in extra.less

.p-title {
display: none;
}

However, on our forum pages, it also removed these icons
Screenshot 2021-05-05 at 16.11.27.jpg

Is there another solution?
 
Solution
Less:
.p-title h1
{
    visibility: hidden;
}

Using that instead of display: none ensures the buttons remain in the same location.
Does this change your google results or remove the title from google search results?

thanks

Google typically still does display and use text on a page that is visibility:hidden and/or display:none in their search results. This isn't guaranteed but the use of css options to hide text does not block that same text from inclusion in search results and SEO factoring as far as Google is concerned.
 
Back
Top Bottom