Hi there,
If text is entered into the caption field it will be displayed over the image – there is an SEO tab that you can make use of to store text relating to the image.
However you could use the following CSS which should achieve the hover functionality which you’re looking for – add it to your theme’s style.css file
.metaslider .slides .caption-wrap {
display: none;
}
.metaslider .slides:hover .caption-wrap {
display: block;
}
Thanks,
Dave
Thread Starter
Piani
(@webbmasterpianise)
Hi Dave.
Yes, I used that fix before. But after latest updates I encounter a strange text problem with just that specific fix. Its really strange and it “spills over” to other functions when using CSS-optimize. I really cant say why just the “display” is causing this in the Meta Slider for me. Very strange.
You can read all about that here: https://ww.wp.xz.cn/support/topic/optimize-ccs-version-194?replies=21
So for now i use:
.metaslider .caption-wrap {
position: absolute;
bottom: 0;
left: 0;
background: #ffffff !important;
color: #ffffff !important;
opacity: 0 !important;
margin: 0;
display: block;
width: 100%;
line-height: 1px !important;
}
So I still hope this control can be implemented in the setting in the future.