hello,
how can i add phrse “Follow us” next to top and at the bottom this phrase next to the social icons. appreciate it. thanks
Hey AlexBellaTropea,
Try adding this CSS code in Quick CSS, located in Enfold > General Styling:
#socket .social_bookmarks:before {
content: "Follow us";
display: block;
text-align: center;
font-size: 14px;
}
Just change the font size.
Hope it helps.
Best regards,
Nikko
hello Nikko,
it Doesn’t work. i would like to see next on the left of social icons and not on the top of social icons. why is visible only on the bottom and not on the top where other social icons are
Thanks
Hi AlexBellaTropea,
I apologize for the misunderstanding, please try to use this CSS code instead:
#top .social_bookmarks:before {
content: "Follow us";
display: inline-block;
font-size: 14px;
float: left;
margin-right: 8px;
height: 30px;
line-height: 30px;
}
#top #socket .social_bookmarks:before {
height: 40px;
line-height: 40px;
}
Best regards,
Nikko
hello Nikko,
it works, but it is possible to translate ” follow us” in italian, russian, etc. just because my website is multilingual. Thanks
Hi AlexBellaTropea,
Please add this for Italian, just replace the content:
html[lang="it-IT"] #top .social_bookmarks:before {
content: "Follow us";
}
This is for Russian:
html[lang="ru-RU"] #top .social_bookmarks:before {
content: "Follow us";
}
Hope this helps.
Best regards,
Nikko