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 #2830164
Slider overlay
Closed

Comments

  • calvinteoh started the conversation

    Is there a method to make the slider overlay darker as some of the meta information displayed on the image are not clear as the overlay is not dark enough? 

  •  2,494
    PenciDesign replied

    Hi,

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

    .penci-slide-overlay .overlay-link {
        background: -moz-linear-gradient(to bottom, rgba(55,55,55,0.5) 60%, #000 100%);
        background: -webkit-linear-gradient(to bottom, rgba(55,55,55,0.5) 60%, #000 100%);
        background: -o-linear-gradient(to bottom, rgba(55,55,55,0.5) 60%, #000 100%);
        background: -ms-linear-gradient(to bottom, rgba(55,55,55,0.5) 60%, #000 100%);
        background: linear-gradient(to bottom, rgba(55,55,55,0.5) 60%, #000 100%);
    }

    Regards,
    PenciDesign.

  • calvinteoh replied

    Thanks for the prompt response as usual, this solve my queries! With the code, I manage to tweak it to suits the needs of my website. Thanks!