Change Colors of Social Counter Widget – Style 9 Colored Circles

Posted in: Newspaper
Post count: 22

Hi,
I’ve the following questions:
1) I added a Navigation Menu to Footer 1 and 2, and 1 [tagDiv] Social Counter to Footer 3 with custom title Follow us. I used the Global Header template and Style 9 – Colored Circles. The widget comes with different social icon background colors for FB, Instagram, Twitter and Youtube. How can I change all these different colored circles into one specific color: #00b0ff?
2) How can I change the size of these circles in order to make them a bit smaller?
Thanks a lot

Post count: 20688

Hi,

1. So you want all the socials to be of the same background, this could be done like this
https://www.screencast.com/t/cb7T6ZA41Nt
Enter this code in Theme panel->Custom CSS section

.td-social-colored .td-sp {
background-color: #00b0ff!important;
}

2. They have fixed width and height like this
https://www.screencast.com/t/hZMDHlAPKLd
You could reduce those values if needed, using the same code
https://www.screencast.com/t/m2HYmIiJG8q
This is the code used in the example, give it a try

.td-social-colored .td-sp {
width: 44px;
height: 44px;
background-position: -14px -222px!important;
}

Thanks

Post count: 22

First point is done, but second suggestion doesn’t work, because only the Instagram icon is displayed in all circles – the other icon logos are disappeared. Hope you have a solution. Thanks!

Post count: 20688

Indeed that is the case, I did not realize that. Each social icon has to be re-positioned after the width change, like this
https://www.screencast.com/t/E0pGMPi7zM
They all have specific positioning so a code has to be created for each social. In this example I used Google+, Instagram, Twitter and YouTube. This is the code for them, which should be added in addition to this one

.td-social-colored .td-sp {
width: 44px;
height: 44px;
}

.td-social-style9 .td_social_googleplus .td-sp {
background-position: -15px -274px;
}
.td-social-style9 .td_social_instagram .td-sp {
background-position: -14px -222px;
}
.td-social-style9 .td_social_twitter .td-sp {
background-position: -14px -429px;
}
.td-social-style9 .td_social_youtube .td-sp {
background-position: -13px -378px;
}

If you have other socials mention them, or provide a link to your website for a more accurate solution.

Post count: 22

I use the following socials: FB, Instagram, Twitter and YouTube. So please provide me the FB info. Thanks a lot!

Post count: 20688

This is the code for the Facebook icon
https://www.screencast.com/t/S4jBHwC4Gg

.td-social-style9 .td_social_facebook .td-sp {
background-position: -15px -15px;
}

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