How to change color / style of sharing buttons on posts

Posted in: Newspaper
Post count: 43

Hello, I was wondering if it’s possible to change the colors / style on the sharing buttons that appear on each post, in the same way it can be done with Social Counter by changing the style?

Thanks!

Post count: 22421

Hello,

Our theme does not have any such option unfortunately. It was only added for the social counter. You can try to use css to alter them if you want. Here is an example:
.td-social-sharing-buttons{
background-color:grey!important;
border: 1px solid rgba(0, 0, 0, 0.5);
border-radius:20px;
}

result: http://screencast.com/t/7JyFCn74REe

or another one: http://screencast.com/t/ZIgglvx3bd or http://screencast.com/t/2vaQzKULy
It depends on the look you are after.

Thank you!

Post count: 43

Perfect! Thank you so much!

Post count: 43

I tried to change the style sheet css using Editor, but I got this error message underneath. I read somewhere that it’s better to create a child theme and edit the css there instead? Is there a tutorial to go about this?

413 Request Entity Too Large
The requested resource
/wp-admin/theme-editor.php
does not allow request data with POST requests, or the amount of data provided in the request exceeds the capacity limit.

Post count: 22421

Hello,

Our theme provides a custom code panel so for any css that will re-write style.css you can place it in the them panel->custom code section: http://screencast.com/t/gyu7RyN6

Thank you!

Post count: 43

Hi Bogdan,

Thank you so much!

So if I want to use what you posted earlier, but with white background and black font color, how do I change the font color to black? This is what I added and it worked, but I can’t see how to change the font color to black…

.td-social-sharing-buttons{
background-color:#fff;
border: 1px solid rgba(0, 0, 0, 0.5);
border-radius:20px;
}

Post count: 43

i figured out of it! thank you for your help with this, Bogdan!

Viewing 7 posts - 1 through 7 (of 7 total)
The forum ‘Newspaper’ is closed to new topics and replies.