Dimming the right & left images.
Closed this issue · 2 comments
kaushal123 commented
It is grate slider.
I have already given opacity to right & left images but how can it be darken to a light black? so middle image looks brighter.
Any Help Please?
Thanks.
Mottie commented
You could add some css to lower the opacity of the side images, like this (demo):
.mb-panel {
opacity: 0.5;
filter: alpha(opacity=50);
}
.mb-panel.current {
opacity: 1;
filter: alpha(opacity=100);
}
kaushal123 commented
Thanks Mottie.