Hi guys,
my footers social icons is not visible.. how to make it visible?thanks
Hey jalmz!
Please add following code to Quick CSS
#top #wrap_all .av-social-link-facebook a {
color: #fff;
background-color: #37589b;
}
#top #wrap_all .av-social-link-twitter a {
color: #fff;
background-color: #46d4fe;
}
#top #wrap_all .av-social-link-youtube a {
color: #fff;
background-color: #a72b1d;
}
#top #wrap_all .av-social-link-gplus a {
color: #fff;
background-color: #de5a49;
}
#top #wrap_all .av-social-link-instagram a {
color: #fff;
background-color: #a67658;
}
Best regards,
Yigit
Thank you Yigit.. but how can i apply this for the socket only? and it will not affect the social icons in header?
Hi!
Please change the code to following one
#socket .av-social-link-facebook a {
color: #fff !important;
background-color: #37589b !important;
}
#socket .av-social-link-twitter a {
color: #fff !important;
background-color: #46d4fe !important;
}
#socket .av-social-link-youtube a {
color: #fff !important;
background-color: #a72b1d !important;
}
#socket .av-social-link-gplus a {
color: #fff !important;
background-color: #de5a49 !important;
}
#socket .av-social-link-instagram a {
color: #fff !important;
background-color: #a67658 !important;
}
Regards,
Yigit
It works Yigit.. Thanks