How do i style the image caption on an image, which appears after a hover
Hi kimogroup!
You can target it with this CSS.
.av-image-caption-overlay p {
color: red !important;
}
Best regards,
Elliott
Kindly find an attached picture for your perusal
I want to do a hover like this, i want to be able to arrange where the text will be.
Hi!
That is bordering on custom work but surround each text with a <span></span>
tag and send us a link to your page and we’ll see if we can get you some CSS to make it look like that.
Cheers!
Elliott
Hey!
Add this to your custom CSS.
.av-image-caption-overlay-center > p:nth-child(1) {
left: 10px;
position: absolute;
top: 10px;
}
.av-image-caption-overlay-center > p:nth-child(2) {
left: 10px;
position: absolute;
top: 30px;
}
And just keep adding new sections for each new span you add.
Best regards,
Elliott