Hi,
Add the code bellow to you css custom options.
To change the color of the Overlay text effect in the Masonry just change the color in the first css rule provided.
.masonry-gallery-item figure.animated-overlay figcaption * {
color: #FFF!important;
-o-transition-property: none !important;
-moz-transition-property: none !important;
-ms-transition-property: none !important;
-webkit-transition-property: none !important;
transition-property: none !important;
-o-transform: none !important;
-moz-transform: none !important;
-ms-transform: none !important;
-webkit-transform: none !important;
transform: none !important;
-webkit-animation: none !important;
-moz-animation: none !important;
-o-animation: none !important;
-ms-animation: none !important;
animation: none !important;
}
– Rui