Do search engines see CSS generated content?

9 replies
  • SEO
  • |
There is a wp theme menu structure:
HTML Code:
<div>
<span navfxtext="Home"> </span>
<a href="#"> Home </a>
</div>
To animate the buttons we need an additional layer <span> with the same text inside ("Home").
To avoid duplicates of keywords in the menu the tag <span> is left blank, and the text is stored in the parameter navfxtext from which it is inserted into the pseudo element :before using CSS
HTML Code:
span: before {
content: attr (navfxtext);
}
The question is: Do search engines see CSS generated content? Would it be a rendered text in the pseudo element by Google engine and considered as double: Home Home, Service pages Service pages, Contact us Contact us?
Is the theme considered as seo ready then?
#content #css #engines #generated #search
  • Profile picture of the author michalbrns
    As far as m concerned no, they don't see it like this
    {{ DiscussionBoard.errors[9475209].message }}
    • Profile picture of the author queldorei
      Originally Posted by michalbrns View Post

      As far as m concerned no, they don't see it like this
      Did you ever seen some examples in google search results?
      {{ DiscussionBoard.errors[9475637].message }}
      • Profile picture of the author michalbrns
        Originally Posted by queldorei View Post

        Did you ever seen some examples in google search results?
        Na dint have seen this ..
        {{ DiscussionBoard.errors[9477568].message }}
  • Profile picture of the author yukon
    Banned
    Download this web/dev Firefox plugin, use the 3 plugin settings below to simulate a Google Cache (text version) of your webpage.
    • Disable all javascript
    • Disable all images
    • Disable all styles

    If you can see the text/link while viewing a text only version of your page, Google can see the same text/link.
    {{ DiscussionBoard.errors[9475775].message }}
    • Profile picture of the author michalbrns
      Originally Posted by yukon View Post

      Download this web/dev Firefox plugin, use the 3 plugin settings below to simulate a Google Cache (text version) of your webpage.
      • Disable all javascript
      • Disable all images
      • Disable all styles

      If you can see the text/link while viewing a text only version of your page, Google can see the same text/link.
      now this is something that will help you for sure.. at times there are simple answers
      {{ DiscussionBoard.errors[9477572].message }}
  • Profile picture of the author hirithk
    Hi,
    Actually No.. Disable the Javascript content. Enable the crawling codes where search engines can crawl. There are set of rules in web page design based on that we need to code.
    {{ DiscussionBoard.errors[9477596].message }}
  • Profile picture of the author queldorei
    I know for sure, that Googlebot are able reproduce js. Question is: can a googlebot appraise this code as a doubling content?

    HTML Code:
    <div>
    <span navfxtext="Home"></span>
    <a href="#"> Home </a>
    </div>
    {{ DiscussionBoard.errors[9522992].message }}
  • Profile picture of the author queldorei
    anybody?
    update my theme because still don't have clear aswear
    {{ DiscussionBoard.errors[9602207].message }}

Trending Topics