.sow-slider-base ul.sow-slider-images li.sow-slider-image .sow-slider-image-container {
position: fixed;
}
You currently have it set to “absolute”.
To add CSS:
Learn to use the Chrome Developer Tools to help you see and test changes to your CSS.
]]>You can achieve this by applying following CSS code.
.sow-slider-base ul.sow-slider-images li.sow-slider-image .sow-slider-image-container .sow-slider-image-wrapper {
margin: 0;
z-index: 2;
-ms-box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
https://i.is.cc/2iO5IVAy.png
https://i.is.cc/2iOkeJLT.png
Hope this will help.
Thanks.
]]>