Content in hidden div indexed?

16 replies
  • SEO
  • |
I want to add some detailed instructions/help in a hidden div on the page. Most users won't read it, or will only want to see it the first time, so I'd rather default it to hidden, but the content can help with SEO.

I could default it to visible and then use a cookie to hide it, which google won't activate, but still it is an extra click for users.

Anyone know if the content in the hidden div will be indexed by google and the other search engines?

Thanks.
#content #div #hidden #indexed
  • Profile picture of the author scott g
    WaNaNaNaNa! Might have better luck posting these questions in the Web Design or Programming section!

    HTML Code:
    <html>
    
    <head>
    
    <style type="text/css">
    #hidden span {
    visibility:hidden;
    }
    
    #hidden:hover span {
    visibility:visible;
    }
    </style>
    
    </head>
    
    <body>
    
    <p>PUT THE CAPS UNDER THESE WORDS...</p>
    <p>
    <div id="hidden"><span>MOUSE OVER THIS STUFF AND IT SHOWS UP! MOUSE OVER THIS STUFF AND IT SHOWS UP!<br>
    MOUSE OVER THIS STUFF AND IT SHOWS UP! MOUSE OVER THIS STUFF AND IT SHOWS UP!</span></div>
    </p>
    
    </body>
    
    </html>

    CHEERS!
    Signature
    scott g
    "Whatever the mind can conceive and believe, the mind can achieve."

    {{ DiscussionBoard.errors[3336954].message }}
  • Profile picture of the author Fraggler
    He wasn't asking how to do it, Scott. He was asking if the search engines will find it.

    aygabtu, I had a quick search and couldn't find anything conclusive. I haven't tried it personally. Using it to benefit SEO is a problem though and is frowned upon from Google. I don't know what the ban process is (manual or automatic) but hidden text should be for usability only, not cloaking.
    {{ DiscussionBoard.errors[3337105].message }}
    • Profile picture of the author paulgl
      Hiding text or links in your content can cause your site to be perceived as untrustworthy since it presents information to search engines differently than to visitors. Text (such as excessive keywords) can be hidden in several ways, including:

      * Using white text on a white background
      * Including text behind an image
      * Using CSS to hide text
      * Setting the font size to 0

      If your site is perceived to contain hidden text and links that are deceptive in intent, your site may be removed from the Google index.
      Although css is specifically mentioned, I believe one can just define the
      style with the div and not need css to make it hidden.

      Either way, it seems it probably would be seen by google, but how what they
      do about it is iffy. Would they detect it as being hidden? There's a good chance.
      Certainly anything in html could be indexed, especially what appears to a browser
      as being text, hidden or not.

      Paul
      Signature

      If you were disappointed in your results today, lower your standards tomorrow.

      {{ DiscussionBoard.errors[3337137].message }}
      • Profile picture of the author aygabtu
        Originally Posted by paulgl View Post

        Although css is specifically mentioned, I believe one can just define the
        style with the div and not need css to make it hidden.

        Either way, it seems it probably would be seen by google, but how what they
        do about it is iffy. Would they detect it as being hidden? There's a good chance.
        Certainly anything in html could be indexed, especially what appears to a browser
        as being text, hidden or not.

        Paul
        I did use google's web master tools and it does show in the fetch. At this point I am thinking maybe go with css and define a class that will hide it if the class is associated. This make is less obvious to google that it is hidden and maybe a better chance of being included.

        Again, this isn't content I am trying to add specifically for SEO, but I don't want it taking screen real estate all the time for our users.
        Signature

        Check top 300 Google SERP results free. WhatsMySERP.com tracks and graphs changes for multiple domains/keywords/regions. Also includes advanced keyword density tool.

        {{ DiscussionBoard.errors[3337213].message }}
    • Profile picture of the author aygabtu
      Originally Posted by Fraggler View Post

      He wasn't asking how to do it, Scott. He was asking if the search engines will find it.

      aygabtu, I had a quick search and couldn't find anything conclusive. I haven't tried it personally. Using it to benefit SEO is a problem though and is frowned upon from Google. I don't know what the ban process is (manual or automatic) but hidden text should be for usability only, not cloaking.
      I would be adding it for two reasons. #1 is to benefit my users that need the information. Second is that I hope it would benefit SEO.

      It's not like the content can't be accessed by any and every user. It's just defaulted to not being shown, but with a click of a button a jquery event will toggle whether the content is displayed or hidden.
      Signature

      Check top 300 Google SERP results free. WhatsMySERP.com tracks and graphs changes for multiple domains/keywords/regions. Also includes advanced keyword density tool.

      {{ DiscussionBoard.errors[3337159].message }}
      • Profile picture of the author paulgl
        Originally Posted by aygabtu View Post

        I would be adding it for two reasons. #1 is to benefit my users that need the information. Second is that I hope it would benefit SEO.
        Then why on earth are you hiding it?

        I think it would be better using the css hover tooltip or whatever they call it.
        Probably would not do it as a javascript, as the executed javascript may not
        be seen by google.

        That way it's probably not perceived as hidden.

        Paul
        Signature

        If you were disappointed in your results today, lower your standards tomorrow.

        {{ DiscussionBoard.errors[3337212].message }}
        • Profile picture of the author aygabtu
          Originally Posted by paulgl View Post

          Then why on earth are you hiding it?

          I think it would be better using the css hover tooltip or whatever they call it.
          Probably would not do it as a javascript, as the executed javascript may not
          be seen by google.

          That way it's probably not perceived as hidden.

          Paul
          This is going to be multiple paragraphs of content. Far more than what you would want to show on a mouse or hover tooltip. Maybe I will just do this in conjunction with cookies with the default as displayed, then if they hide it, the next time they come to the page, it will continue to be hidden, but for the search engines it will always be visible because they don't interact with the site to turn off.
          Signature

          Check top 300 Google SERP results free. WhatsMySERP.com tracks and graphs changes for multiple domains/keywords/regions. Also includes advanced keyword density tool.

          {{ DiscussionBoard.errors[3337236].message }}
    • Profile picture of the author scott g
      Originally Posted by Fraggler View Post

      He wasn't asking how to do it, Scott. He was asking if the search engines will find it.

      aygabtu, I had a quick search and couldn't find anything conclusive. I haven't tried it personally. Using it to benefit SEO is a problem though and is frowned upon from Google. I don't know what the ban process is (manual or automatic) but hidden text should be for usability only, not cloaking.

      LOL! I dunno WTF I was reading!!! I thought it sounded like fun! :p
      Signature
      scott g
      "Whatever the mind can conceive and believe, the mind can achieve."

      {{ DiscussionBoard.errors[3338119].message }}
  • Profile picture of the author Fraggler
    It doesn't matter what you or I think; it's what the search engines 'think'. Have a read of what Paul posted.
    {{ DiscussionBoard.errors[3337168].message }}
  • Profile picture of the author Fraggler
    If you want to know if the content is indexed or not, regardless of how Google perceives it, go to a well crawled site and add a random unique phrase (that has no Google results) to one of your hidden tags and see if it gets indexed.

    It should take less than a day to have a definitive answer.
    {{ DiscussionBoard.errors[3337344].message }}
  • {{ DiscussionBoard.errors[3337960].message }}
  • Profile picture of the author Derek S
    ugg I see soo many sites using this method to sell and hide links on a page. But i have yet to see the site or any of the sites it links to penalized in google. Leaves me to believe for the meantime you will be fine... Who knows if one day google will frown upon this or not as more people use it to game SEO
    Signature

    --- Work Smart... Not Hard ---

    {{ DiscussionBoard.errors[3338141].message }}
  • Profile picture of the author GeorgR.
    Do NOT hide anything from the search engines, its bad, you might get penalized.
    Signature
    *** Affiliate Site Quick --> The Fastest & Easiest Way to Make Affiliate Sites!<--
    -> VISIT www.1UP-SEO.com *** <- Internet Marketing, SEO Tips, Reviews & More!! ***
    *** HIGH QUALITY CONTENT CREATION +++ Manual Article Spinning (Thread Here) ***
    Content Creation, Blogging, Articles, Converting Sales Copy, Reviews, Ebooks, Rewrites
    {{ DiscussionBoard.errors[3338163].message }}
    • Profile picture of the author yukon
      Banned
      Originally Posted by GeorgR. View Post

      Do NOT hide anything from the search engines, its bad, you might get penalized.
      C'mon now, live a little.

      Hidden content has it's place & nothing wrong with it, If you use your head in how you handle the hidden text.

      Tell me Ebay isn't stuffing keywords/text (Navigation my a$$, lol)!


      Ebay/Google Cache




      Image #1





      Image #2

      {{ DiscussionBoard.errors[3338391].message }}
  • Profile picture of the author GeorgR.
    I know that some people/competitors use DIV tags to hide links in comments. This is actually pretty..uhm..."dirty". I also know it WORKS since those people rank well with it in very competitive niches...
    Signature
    *** Affiliate Site Quick --> The Fastest & Easiest Way to Make Affiliate Sites!<--
    -> VISIT www.1UP-SEO.com *** <- Internet Marketing, SEO Tips, Reviews & More!! ***
    *** HIGH QUALITY CONTENT CREATION +++ Manual Article Spinning (Thread Here) ***
    Content Creation, Blogging, Articles, Converting Sales Copy, Reviews, Ebooks, Rewrites
    {{ DiscussionBoard.errors[3338940].message }}
    • Profile picture of the author scott g
      Yukon and the Google Cache... Man-o-Man! No one will ever win! Google didn't even win!!!

      CHEERS!
      Signature
      scott g
      "Whatever the mind can conceive and believe, the mind can achieve."

      {{ DiscussionBoard.errors[3341063].message }}

Trending Topics