Hi @SHK111
Thanks for the heads up, seems a few styles were missing. Please try adding this to your custom css within theme options:
.swiper-slide[data-bg-align="top"][data-bg-horiz-align="center"] {
background-position: center top;
}
.swiper-slide[data-bg-align="center"][data-bg-horiz-align="center"] {
background-position: center center;
}
.swiper-slide[data-bg-align="bottom"][data-bg-horiz-align="center"] {
background-position: center bottom;
}
That should sort it. You probably also want to set the background image size to cover – as this will make sure it covers the area without over-sizing where not needed.
– Ed