RESOLVED – Icons color
-
Hi,
Sometimes the icons color not work
I would suggest to developers to add, on loader.php, the !important to style on lines 62 and 65.// add custom social button colors to the header add_action( 'wp_head', 'my_custom_css_hook' ); function my_custom_css_hook( ) { echo '<style type="text/css"> .social-buttons a { color: ' . get_option('social_button_color') . '; } .social-buttons a:hover { color: ' . get_option('social_button_color_hover') . '; } </style>'; }
TO
// add custom social button colors to the header add_action( 'wp_head', 'my_custom_css_hook' ); function my_custom_css_hook( ) { echo '<style type="text/css"> .social-buttons a { color: ' . get_option('social_button_color') . '!important; } .social-buttons a:hover { color: ' . get_option('social_button_color_hover') . '!important; } </style>'; }
- The topic ‘RESOLVED – Icons color’ is closed to new replies.