There are three types of skins that can be applied for Carousel:
The "material" skin is used by default. Depending on the attached CSS skin file, carousel will try to detect the skin automatically. If you have several attached css files, you need to force skin during initialization:
// init with script
var myCarousel = new dhtmlXCarousel("parentId", "slide", "dhx_web");
// or by using object API init
var myCarousel = new dhtmlXCarousel({
skin: "dhx_web"
});
Back to top