Reply To: Slider images grey scle

#20343
MTressl
Participant

Hi Naomi
there is a CSS class that defines the gray overlay, called .slide-overlay.

This is set to a default of 40% in the theme (background: rgba(0,0,0,.4);), see last parameter.

You can easily overwrite this to e.g. 20% with the following custom class under Appearance > Theme Options > Design:

.slide-overlay {
	background: rgba(0, 0, 0, .2);
}

Hope this helps.
Markus