How do I change the footer social icon box when I hoover on the icons? Please see example at link below.
http://ireggaenation.com/
Hi,
The hover is set in css for each button in particular. There is no option in the theme to change this behavior. It can only be changed with custom css code.
.td-social-style2 .td-social-icon-wrap:hover .td-icon-facebook{
background-color: grey;
}
.td-social-style2 .td-social-icon-wrap:hover .td-icon-instagram{
background-color:grey;
}
.td-social-style2 .td-social-icon-wrap:hover .td-icon-twitter{
background-color:grey ;
}
.td-social-style2 .td-social-icon-wrap:hover .td-icon-youtube{
background-color:grey ;
}
Change the colors in the code and then place it in the theme panel under the custom code section.
Thanks;
Thanks for the css snippet you have provided, but it focuses on the hover colour of the icons. My interest is in changing the background color from grey to another color when I hover over any of the icons it contains. Can you indicate what needs to be added to the css?
Please check the social network icons on the footer of the site at link below to see exactly what effect I want.
Hello,
I thought http://ireggaenation.com/ was your site. The site you mention uses newsmag not newspaper. that is why you see different implementation. If you want to change the backghround effect, please use this code:
.td-social-icon-wrap:hover i.td-icon-facebook{
background-color: #3b5998;
color:white;
}
Thanks