Hello,
this is the site made in Enfold for our company. The social icons on the top right are too smal and we would also like to change the color of it.
Is it possible to insert html in the editor OR do I have to go to the html-files on the server ? Where could I find this on the server (which file)
thank you for your help,
Fabienne
Hey Fabienne,
Thank you for the inquiry.
You can increase the size of the social icons in the top header with css. Please try this code in the Quick CSS field or the child theme’s style.css file.
#top .social_bookmarks li a {
line-height: 30px;
text-align: center;
font-size: 18px;
}
And you can also change the color of a specific social icon using this css pattern.
#top #wrap_all .av-social-link-linkedin a {
color: #fff;
background-color:#419cca;
}
The css code above will adjust the color of the linkedin social icon.
NOTE: Please don’t forget to toggle the Performance > File Compression settings after adding the code.
Best regards,
Ismael