Add text next to social icons in action bar

Is it possible to add some text (with CSS probably) infront of the social icons in the action bar?

I just want to add ''Follow us on:''

Trying to avoid creating a custom header/actionbar.

Comments

  • Hi,

    Please always attach a link to your website so we can check it out. If the page is offline(localhost), then our help will be limited. You will have to contact us when the page is online. Also, please make sure that the page is not under maintenance before you provide us with the link.

    Thanks

  • precious-curtain.localsite.io

    username and pass: test2024

  • Try the following CSS code:

    #Action_bar ul .linkedin:before{
     display: inline-block;
     content: "Follow us on:";
     color: #fff;
     margin-right: 5px;
    }
    

    Put it in Betheme -> Theme options -> Custom CSS & JS -> CSS.


    Best regards

  • Thank you that worked!

Sign In or Register to comment.