Can you change the “share buttons” colours below a post?

I currently use another plugin for my share buttons below post that match my colours. I noticed Cookely has an option to add share buttons above and below your post which is very handy and wonderful to have everything together.

My question is, is it possible to edit the colours of these buttons? I’ve had a look but I can’t find the options for this if they do exist! Any help would be much appreciated!

Hi @Sky

Do you mean these buttons?

image

Here’s the CSS code that you can use to modify the colors:

.single .share a { /* Twitter button */
    border: 2px solid #3a93d8;
    color: #3a93d8;
}

.single .share a.facebook {
    color: #2e6cc8;
    border-color: #2e6cc8;
}

.single .share a.pinterest {
    color: #bd081c;
    border-color: #bd081c;
}

.single .share a.print {
    color: #76a75e;
    border-color: #76a75e;
} 

If you need more help, please open a support ticket:

1 Like

Hey Pavel,

Thanks for your response. That was exactly what I was looking for :slightly_smiling_face: