Can I change the color by mouse-hover element.
Hey steelgate!
You can change most of the colors using custom css. Please elaborate what exactly you like to do so we can help you with some custom css if necessary to resolve this issue.
Regards,
Vinay
Thanks,
I want too change the white color under the picture.
Hey!
Please feel free to change the color values and use the below css in Enfold > General Styling > Quick CSS
/* Title Color*/
.main_color .container .av-inner-masonry-content {
background-color: #333!important;
color: #fff!important;
}
Regards,
Vinay
Thanks, you’re the best ;-)
Can I also make this transparent?
Hey!
Sure, you can simple change the code to following one
/* Title Color*/
.main_color .container .av-inner-masonry-content {
background-color: transparent !important;
color: #fff!important;
}
Regards,
Yigit
Thanks again,
I have changed the code a little bit ;-)
/* Title Color*/
.main_color .container .av-inner-masonry-content {
background-color: #719430;
opacity: 0.75;
color: #fff;
Hey!
You are missing a closing curly bracket in your code. Please make sure to add it
/* Title Color*/
.main_color .container .av-inner-masonry-content {
background-color: #719430;
opacity: 0.75;
color: #fff;
}
Regards,
Yigit
Yes, I see It
I have not good paste/copy :D
Thanks