Separate Banner Images on mobile and desktop - Startup Theme

I have looked everywhere to have separate banner images on this theme but I have yet to find anything that works. I need help.

You need to ask a developer to add this feature for you or you can ask the theme support.

Where can I find either one of those

You can pick a partner or expert. Just drop them a message for a quote.
And theme support info can be found in the theme documentation.

Hi @ecommercekis

Dan here from Ryviu: Product reviews & QA app.

You can create 2 image banners and then add this code Custom CSS of image banner section that you want to hide on mobile

@media (max-width: 768px) {
  .image-with-text-overlay__container {
    display: none;
  }
}

And add this to section you want to hide on desktop

@media (min-width: 767px) {
  .image-with-text-overlay__container {
    display: none;
  }
}

Best Regards,

Dan from Ryviu