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 #3554982
Chaging Opacity of Elements
Closed

Comments

  •  1
    EbonyIris started the conversation

    Hi,

    Can you tell me how to increase the opacity of the overlay on the Penci Featured Slider Style 35? The darkest setting still makes it hard to read smaller reverse copy (see attached). Alternatively, making this a solid white or black would be desirable. Thanks in advance!

    Attached files:  Screenshot 2024-01-04 at 3.31.57 PM.png

  •  2,610
    PenciDesign replied

    Hi,

    Please navigate to Appearance → Customize → Custom CSS, and then insert the following custom CSS code:

    @-webkit-keyframes pencifadeInUpDiv {
     0% {
      opacity:0;
      -webkit-transform:translate3d(0,450px,0);
      transform:translate3d(0,450px,0)
     }
     100% {
      opacity:.9;
      -webkit-transform:none;
      transform:none
     }
    }
    @keyframes pencifadeInUpDiv {
     0% {
      opacity:0;
      -webkit-transform:translate3d(0,450px,0);
      transform:translate3d(0,450px,0)
     }
     100% {
      opacity:.9;
      -webkit-transform:none;
      transform:none
     }
    }

    Regards,
    PenciDesign.