Site logo

Archived topic

Lightweight Social Icons with text

5 replies · Started by Francisco Jose Armero Alcaraz on September 16, 2019

Viewing posts 1–6 of 6

How can I add text to the icons in Lightweight Social Icons plugin?

Hi there,

you could add the icon title after each icon with this CSS:

.lsi-social-icons li a:after {
    content: attr(title);
    margin-left: 0.5em;
}
.lsi-social-icons li a {
    display: flex !important;
    width: auto !important;
}

Thanks.
I want add my contact email after of icon "email".
Is possible?

Try this:

.lsi-social-icons li.lsi-social-email a:after {
    content: 'name@emailaddress.com';
    margin-left: 0.5em;
}
.lsi-social-icons li.lsi-social-email  a {
    display: flex !important;
    width: auto !important;
}

It works perfect. Thank you

You're welcome

This archived topic is closed to new replies.