Skip to content
Public Ticket #18214

About image captions

Conversation thread

Kohey S replied

Customer Reply

solved! thank you

PenciDesign Supporter replied

Staff Reply

Hi,

Please go to Appearance → Customize → Custom CSS then add the following custom CSS code:

.wp-caption:hover p.wp-caption-text,
.post-image:hover .penci-featured-caption {
    opacity: 1;
    transform: none;
    -webkit-transform: none;
}

Regards,
PenciDesign.



Kohey S replied

Customer Reply

I was able to set it, thank you

In addition, when I hover over the image, the caption moves and hides, how can I get rid of the movement and keep it displayed all the time?

PenciDesign Supporter replied

Staff Reply

Hi,

Please go to Appearance → Customize → Custom CSS then add the following custom CSS code:

.wp-caption p.wp-caption-text,
.penci-featured-caption,
.wp-caption p.wp-caption-text:hover,
.penci-featured-caption:hover {
    position: static;
    color: var(--pctext-cl);
    background: transparent;
    -moz-transition: none;
    opacity: 1;
    transform: none;
    -webkit-transform: none;
}

Regards,
PenciDesign.



Want to join this conversation or access attachments? Sign in first.