Image banner not displaying on dawn theme mobile view

A couple of my image banners are not viewable on my mobile website. Which is weird because it was working a few weeks ago and now it’s not.

Here is the website: https://offshoresupplements.com/

1 Like

Hi @ngvillar12

check this one.

  1. From you Admin page, go to Online Store > Themes
  2. Select the theme you want to edit
  3. Under the Asset folder, open the main.css(base.css, style.css or theme.css)
  4. Then place the code below at the very bottom of the file.
@media screen and (max-width: 749px) {
    .banner__media:first-child {
        display: block !important;
    }
    .banner:not(.banner--stacked) {
        flex-direction: column !important;
}
}