Tagged: figcaption, Fonts, masonry
Hi there I wanted to change the colour of the display caption background and the font on the masonry gallery.
is there some general css that I could tweak to change font and colours that you could paste for me?
Thank you awesome people
ENB..//
Hey Erich Nolan!
Thank you for using Enfold.
You can try this in the Quick CSS field:
.main_color .av-inner-masonry-content, .main_color .avia-arrow {
background-color: red;
}
Best regards,
Ismael
Thanks a tonne ismael,
How do I specify just the one masonry gallery on the site?
How about font colours?
How about entire image overlay and opacity settings?
Do you have some css that you could copy paste that has controls and examples for all those things and especially to deal with only one gallery not all the galleries on the site, would it use a css class?
ENB..//
Hi PRuuPH!
In order to affect a single page or post you can use a page-id to apply the changes to that page/post only:
.page-id-37 .main_color .av-inner-masonry-content, .main_color .avia-arrow {
background-color: red;
}
Font Color:
.av-masonry-entry .av-masonry-entry-title {
line-height: 1.3em;
margin: 0;
font-size: 15px;
}
Overlay opacity:
.avia_desktop .av-hover-overlay-active .av-masonry-image-container {
opacity: 0.5;
}
Cheers!
Dake