Why isn't my slideshow image displaying properly?

Hello, there is supposed to be an actual image where it is blank any help would be greatly appreciated:

Even when I saved the image it still only displays that white page…

Here is the preview link and the password is: plswork

https://uxhwg080orycdnfl-58572865730.shopifypreview.com

Hi @gthegreat ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/section-image-banner.css->paste below code at the bottom of the file:
@media (min-width: 750px) {
.banner__media {
    height: 100% !important;
}
}
@media (max-width: 749px) {
.banner__media,
.banner__media img {
    position: static !important;
}
.banner--mobile-bottom .slideshow__text-wrapper {
    display: block !important;
}
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

1 Like

Thank you…that worked