vote up -2 vote down star

Duplicate:

SEO : Is h1 tag that’s hidden using display:none given prominence by Search engines ?

I was looking for options on how I can hide H1 text from users yet still have it crawled by search engines.

I have thought of using CSS text-indent to move the text off screen but that still leaves a space. Is there some other SEO-friendly way to hide H1 information?

flag

6% accept rate
Why was this down-voted? I think that it's perfectly reasonable. – Lucas Jones Apr 16 at 14:48
It's a duplicate of his previous question. – Welbog Apr 16 at 14:51
Yes, it's a duplicate of question at stackoverflow.com/questions/753951/… – Török Gábor Apr 16 at 15:06

closed as exact duplicate by Gumbo, Welbog, LFSR Consulting, Chad Birch, Mark Biek Apr 16 at 16:38

3 Answers

vote up 0 vote down

Add this rule to your CSS:

h1{
    display: none;
}

When the browsers renders the document, it will not consider the H1 tag as this CSS rule marks it as hidden and it will not occupy any screen space. Search engines will still read the H1 tag content. You get both of best world.

One word of caution though, do not use this technique to stuff lots of keyword in your H1 tag. The H1 tag should still contain relevant text.

You must also be aware that if the user disables CSS in its browser (ie: Developer Toolbar in Firefox allows to do that), then the text will be visible. It will also be read by screen readers used by disabled people.

-- @LFSR Consulting: I'm pretty confident that if you do not abuse the H1 tag to stuff keywords and it's content is releavant to the page, Google will not apply a penalty. But I do agree, that if the H1 tag contains useful content then it should be shown.

link|flag
I was under the impression Google does read the CSS from your page... it does request the CSS right? I've always used text-indent: -9999px for this reason. – alex Apr 17 at 0:27
vote up 5 vote down

Don't try to outsmart search engines. If you find a way that actually works, it's very likely that it will come back and bite you pretty soon.

As your question is more or less a repetition of your previous question, what I wrote there applies here also.

link|flag
vote up 2 vote down

Hiding H1-tags are not SEO friendly.

Searchengines (especially Google) promotes that you always display the same content for the users, as for the crawlers.

From my own experience, if you use "display:none;", the crawler will see it like this:

Ohh, they hide it from the users, then we dont care about it either..

link|flag
That makes sense. I am now looking at another way to make it SEO friendly. Display the H1 info as text and then replace the content of the container div using javascript. So since javascript is ignored by crawlers, it should pick up the H1 textual info. Thoughts on that ? – Iris Apr 16 at 17:45
JavaScript is not ignored.. well.. sort of. I think google looks for window.location to try and find gateway pages. IIRC, the google bot does request your js files. – alex Apr 17 at 0:29
Use text-indent: -9999px ... I'm pretty sure it works (a lot of my pages rank quite well). You could use JS to do this, but I think it's unnecessary. – alex Apr 17 at 0:29
The crawlers can interpret javascript, but, with a limited knowledge. For my own experience, there should be only one H1-tag/page. The crawlers can make sure that it is the no.1 header, and then look further down the hierarchy for H2, H3 etc. In long-terms, you will not gain anything by breaking the Google guidelines. – Tommy Apr 18 at 9:02

Not the answer you're looking for? Browse other questions tagged or ask your own question.