Social sharing on blog posts - color

Hi there,

So I activated social sharing on my blog posts by adding this to my child theme functions.php:

function x_add_social_sharing() {
if ( (!is_front_page() && is_home()) || is_single() ) {
echo do_shortcode(’[x_share title=“Partagez cet article !” facebook=“true” linkedin=“true” email=“true”]’);
}
}
add_action(‘x_before_the_content_end’, ‘x_add_social_sharing’);

add_filter(‘gettext’, ‘x_translate_text’ , 20, 3);

My problem is, they appear on my blog posts but they are not seeable due to their colors. How could I change their colors?

You can see an example at the bottom of this page: https://wercury.ch/offre-decouverte-coaching/

Thanks a lot!

Hello @Fuzuki,

Thanks for asking. :slight_smile:

First, I suggest you to update X Theme as you are using latest version of Cornerstone. Using incompatible version of X Theme and Cornerstone causes issues with the layout.

To update X Theme please take a look at following resources:

  1. Version compatibility guide: To learn about the latest and compatible versions of bundled and supported plugins, please take a look at following doc:


2. Theme Update guide: Please take a look at following article to update X Theme.


3. Please take a look at following doc about changelog:

https://theme.co/changelog/

Thanks.

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