how to overwrite css style

Using !important is not recommended but in this situation I think you should –

Write this in your internal CSS –

.flex-control-thumbs li {
  width: auto !important;
  float: none !important;
}

Leave a Comment