An interesting question has arisen in relation to SEO; well, as interesting as SEO can be...
On the forum home page there is an h1 element which contains the forum name; in the case of XenForo.com it's XenForo Community.
Quite a few people have asked how this can be removed, but only on the forum home page.
This can be achieved several ways using CSS applied to EXTRA.css.
This one sets the font size to 0px:
This one prevents it from being displayed:
I pay very little attention to SEO so will either of those affect it?
In both cases the h1 element is still present in the page source, it's just not visible.
On the forum home page there is an h1 element which contains the forum name; in the case of XenForo.com it's XenForo Community.
Quite a few people have asked how this can be removed, but only on the forum home page.
This can be achieved several ways using CSS applied to EXTRA.css.
This one sets the font size to 0px:
Code:
.forum_list .titleBar h1 {
font-size: 0px;
}
This one prevents it from being displayed:
Code:
.forum_list .titleBar {
display: none;
}
I pay very little attention to SEO so will either of those affect it?
In both cases the h1 element is still present in the page source, it's just not visible.