Change tranparency slider bar

Good Evening,

I have changed the color of the post-title bar which appears in de slider and now I want to make this color 50% transparent. How can I do this?

Best Regards, Mirjam

Hi Mirjam,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Dazzling Options -> Other -> Custom CSS

div.flex-caption h2 {
    background: rgb(31, 166, 122);
    background: rgba(31, 166, 122, 0.7);
}

Please change the color value in the above code to whatever you want to use by referring the following page.

http://www.w3schools.com/css/css_colors.asp

Best Regards,
Movin

Hi Movin,
It works! Thank you.

You are most welcome here :slight_smile: