Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1185155

    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

    #1185305

    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

    #1185587

    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

    #1185591

    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

    #1185603

    hello Nikko,

    it works, but it is possible to translate ” follow us” in italian, russian, etc. just because my website is multilingual. Thanks

    #1185743

    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

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.