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 #2847825
Image caption
Closed

Comments

  • FatHummus started the conversation

    Hi

    I wish to the image caption to be overlay


      

    5251920958.png

    as this?

    8558415689.png


  •  2,699
    PenciDesign replied

    Hi,

    Please try to add more this code to Customize > Custom CSS to do that:

    .wp-block-image figure{
        position: relative;
    }
    .wp-block-image figure figcaption {
        position: absolute;
        bottom: 0;
        margin: 0;
        padding: 5px 10px;
        background: rgba(0, 0, 0, 0.6);
        color: #fff;
    }
    

    Best Regards,

    PenciDesign

  •  2,548
    PenciDesign replied

    Hi,

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

    .wp-block-image {
        position: relative;
    } .wp-block-image figcaption {
        position: absolute;
        bottom: 0;
        right: 0;
        margin: 0;
        padding: 10px 25px;
        background-color: rgba(55, 55, 55, 0.5);
        color: #fff;
        z-index: 9;
    }

    Regards,
    PenciDesign.


  • FatHummus replied

    Thanks!