Can you please provide me with some quick css to change the highlight color on the portfolio grid from a transparent white to black please? Thanks!
Hey djshortkut!
Please try the following in Quick CSS:
.image-overlay{
background-color:#000 !important;
}
Regards,
Rikard
Hi!
Please add following code to Quick CSS as well
.image-overlay-inside:before {
background-color: transparent;
color: #0a397a;
border: 3px solid;
}
Regards,
Yigit
Thanks Yigit! That code almost worked. I added an !important rule for the background color to get the transparent portion to work. Now the 3px outline of the icon is in blue though and I want it to be white. How can I fix?
.image-overlay-inside:before {
background-color: transparent !important;
color: white !important;
border: 3px solid;
}
Hey!
Try to replace it with:
.image-overlay-inside:before {
background-color: transparent !important;
color: white !important;
border: 3px solid white !important;
}
Best regards,
Ismael
Resolved…thank you!