21.04.2020, 11:09
Width of the buttons can be changed by adjust left/right padding. Icon will be centered if left/right padding is the same.
In case you need to change vertical spacing.
You will probably need to adjust slider handle element as well. Here width is set directly.
Code:
.slider-alt .slider-v .slider-max,
.slider-alt .slider-v .slider-min {
padding-left: 10px;
padding-right: 10px;
}
In case you need to change vertical spacing.
Code:
.slider-alt .slider-v .slider-max,
.slider-alt .slider-v .slider-min {
padding-top: 5px;
padding-bottom: 5px;
height: auto;
}
You will probably need to adjust slider handle element as well. Here width is set directly.
Code:
.slider-alt .slider-v .slider-handle {
width: 24px;
}