As mnemosdev mentioned, it's just a tad more intricate ;)
To customize the appearance of the li
elements, use the following CSS:
.fusion-carousel .fusion-carousel-item {
height: 200px; /* adjust as desired */
width: auto !important; /* important to override inline style */
}
However, this may cause the images to become excessively large. To resolve this, target the images specifically:
.fusion-carousel .fusion-carousel-item img {
height: 200px; /* modify according to your preference */
width: auto;
}
Focusing on styling the images is sufficient, there is no need to alter the li items initially.