How to remove overlay/shadow on slideshow banner for mobile view for Dawn theme

I want to remove the shadow/overlay on my slideshow for the mobile view as shown below. Ive already changed the background of the slideshow to white/transparent, and it had worked but only on desktop view. How can i go about this?

mobile view:

desktop view:

url: jobs-hen.com

1 Like

Hey @luckyhandworld

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

@luckyhandworld

Please the following CSS code to your assets/base.css bottom of the file.

.banner__media {
    background: transparent !important;
}

Thanks!