Tagged: seo
Is there any way to place very small or invisible text on my Enfold homepage for SEO purposes? I need to get key words & phrases on there somehow.
Thanks.
Hey envato99!
Yes, you can activate the “custom css class” option: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and then use a textblock element with a custom css class to change the styling of the textblock content/text. I.e. create a new textblock, insert your text into the editor field, then insert “mysmalltextclass” (without the quotes “”) into the “Custom CSS Class” field. Afterwards insert this code into the child theme style.css file (or into the quick css field on the Enfold option page):
.mysmalltextclass{
display: none;
}
– the code will hide the text. You can also use this code if you just want to change the font size:
.mysmalltextclass{
font-size: 5px;
}
Regards,
Peter
Thanks very much Peter – it’s a great help.
Stephen.
Hi!
Glad I could help you :)
Regards,
Peter