Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #2888886
About image captions
Closed

Comments

  • Kohey started the conversation

    How do I change the image caption to a style that appears directly below the image?

    At that time, it is not necessary to display the caption column of the black opacity.


    https://xs356538.xsrv.jp/trend-eye/louis-vuitton-fragrance/

    PASS : affluent

  •  2,492
    PenciDesign replied

    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.



  • Kohey replied

    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?

  •  2,492
    PenciDesign replied

    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 replied

    solved! thank you