Create Bootstrap5 based Image carousel with thumbnails

Comparing #2 with #3

Revision #3 was created by pravi pravi on Dec 4, 2023, 10:42:28 AM.

formatting

Content

[...]
$indicators[] = Html::tag('li',Html::img($options['thumb']), $options);
}
return Html::tag('ol', implode("\n", $indicators), ['class' => ['carousel-indicators']]);
}
}
 
 
 ?>
 
```
Use the following CSS for the above widget to show up and work properly.
```
.product_img_slide {
padding: 100px 0 0 0;
}
[...]