Is there a way to do set is as a default with css, for all sliders? (I plan to have multiple)
The only thing I managed to do is to make everything with opacity 1 and make the selected and the hover one with 0.8 (the opposite of what I want to do)
The thing is that if i set the opacity with
div .nextend-thumbnail-horizontal .nextend-thumbnail-scroller .nextend-thumbnail-scroller-group > div {
opacity:0.8!important;
}
then on hover it applies the filter on top of the 0.8 opacity.
for hover I used this
div .nextend-thumbnail-horizontal .nextend-thumbnail-scroller .nextend-thumbnail-scroller-group > div :hover{
opacity:1!important;
}
which when is left at 1 it keeps the opacity at 0.8 as was set before.
Thanks for the reply!