There is a possibility to make changes in the look and feel of a slider.
For this you need to take the following steps:
<style>
.my_first_class {
/*some styles*/
}
.my_second_class {
/*some styles*/
}
</style>
var slider = new dhx.Slider({
css:"my_first_class my_second-class"
});
Related sample: Slider. Custom Colors
Back to top