How to add "Share:" before social buttons on footer

Hello,

Is there a way to add the words “Share:” before the social buttons in the footer? Kind of like I have my top bar set up?

Thanks
David

Hi David,

It could be done with the custom CSS, please add the following CSS under Theme Options > CSS:

.x-colophon.bottom .x-social-global a:first-child::before {
    content: 'Follow: ';
    position: absolute;
    left: -80px;
}
.x-colophon.bottom .x-social-global a:first-child {
    position: relative;
}

Hope it helps :slight_smile:

Thank you sir.

You’re most welcome, David.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.

Hi David,

To achieve that, please replace the css code provided by my colleague with this

.x-colophon.bottom .x-social-global::before {
    font-size: 20px;
    display: block;
    content: 'Follow:';
}

Hope this helps