Hey,
I really like the look and feel of the Post module / gallery feature to display posts but is there a way to display the Post title without having to hover over the post gallery image?
Hey,
I really like the look and feel of the Post module / gallery feature to display posts but is there a way to display the Post title without having to hover over the post gallery image?
Hey David,
We are looking into this and will get back to you shortly.
Thanks!
KC
Hey David,
Try the CSS snippet below and see if it’s what you’re looking for.
.fl-post-gallery-post .fl-post-gallery-link .fl-post-gallery-text-wrap {
opacity: 1;
}
Ben
Hi Ben,
Thanks, very helpful. By setting “opacity: 1” - essential this removes the hover/animation effect correct?
Is there a way to keep the effect and title or can you point me in the right direction?
Thanks,
David
Hey David,
Try applying some hover effects by using the CSS snippets below. Let us know how it goes.
.fl-post-gallery-post .fl-post-gallery-link .fl-post-gallery-text-wrap:hover {
opacity: 0.5;
}
Thanks!
KC