Would it be possible to get the code to change the team overlay color from white to black?
Hi taliwalt,
Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:
#top .avia-team-member .team-social {
border: 7px solid rgba(0,0,0,0.1);
background: rgba(0, 0, 0, 0.7);
border-radius: 3px;
}
I added in the other items that make up its general appearance so you have them as well. It uses rgba color to define the color and transparency so you can change it as needed.
Regards,
Devin
That worked beautifully, thanks!