Set individual colours for each icon – I'm lost…
-
[I know this has been asked a hundred times, I’ve read through a number of threads here, but I still don’t get it to work… First let me congratulate that you’re using fontello to create the icons instead of image files; I do the same on my business website, which is not on WordPress.]
I would like to set individual colours (yes, I write UK English – LOL) for each icon, but somehow I don’t succeed.
I have added the following to the styles.css of my child theme (I don’t need more buttons):
.social-facebook a, a:hover{ background-color: #3B5998 !important; } .social-gplus a, a:hover{ background-color: #dd4b39 !important; } .social-pinterest a, a:hover{ background-color: #cb2027 !important; } .social-tumblr a, a:hover{ background-color: #32506d !important; } .social-twitter a, a:hover{ background-color: #00aced !important; }
(and more detailled variations of this) I thought this should work, but when I inspect the elements for the icons it always shows
.simple-social-icons ul li a, .simple-social-icons ul li a:hover { background-color: #999999 !important;
I then tried to change the settings for the background color (and hover color) both to ‘blank’, but as soon as I save this It comes back to the pre-set values of ‘#999999’ and ‘#666666’. So I opened the php-file in the editor, although I don’t know much php (but can read it). There I removed the 2 lines
function __construct() { /** * Default widget option values. */ $this->defaults = apply_filters( 'simple_social_default_styles', array( 'title' => '', 'new_window' => 0, 'size' => 36, 'border_radius' => 3, 'icon_color' => '#ffffff', 'icon_color_hover' => '#ffffff', /**'background_color' => '#999999', 'background_color_hover' => '#666666',*/ 'alignment' => 'alignleft',
but this too doesn’t seem to change anything!
What to do next?
Sorry, I’m doing all these changes on a /localhost site, so no link to a live-site.
Thanks!
- The topic ‘Set individual colours for each icon – I'm lost…’ is closed to new replies.