Hi,
I previously had Yigit answer a question for me on how to change the colour of the social media icons in the header to make them visible so that the hover state was the normal state and he answered with this code for Facebook and Twitter which worked perfectly.
https://kriesi.at/support/topic/tutorial-videos-social-icons-in-header-widget-title-text-colour/
Problem is that when I tried to use the same code for the Google+ icon it does not work.
It may be because I tried to guess what you called Google+, using inspect element in Chrome it said the icon is called Gplus but no joy
#top .social_bookmarks_Gplus:hover a {
color: #da2713;
background-color: transparent;
}
#top .social_bookmarks_Gplus a {
color: white;
background-color: #da2713;
}
Can you reply with the correct name
Thanks
Hi GOWD!
Please try following code
#top .social_bookmarks_gplus:hover a {
color: #de5a49;
background-color: transparent;
}
#top .social_bookmarks_gplus a {
color: white;
background-color: #de5a49;
}
Cheers!
Yigit
Hi Yigit, thanks, problem solved! You may close this thread.