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
Do search engines see CSS generated content?
10
There is a wp theme menu structure:
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
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?
HTML Code:
<div> <span navfxtext="Home"> </span> <a href="#"> Home </a> </div>
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);
} Is the theme considered as seo ready then?
- michalbrns
- [1] reply
- queldorei
- [1] reply
- yukon Banned
- [1] reply
- michalbrns
- hirithk
- queldorei
- queldorei
- [1] reply
- erikathomson
Next Topics on Trending Feed
-
10