Mobile view sliders are greyed out

Hi,

May you please help me.

My website mobile view - the sliders are greyed out. How do i fix this. Thank you.

Website name is www.wardrobenthings.com

Hi @presharcy

1. Go to Online Store → Theme → Edit code.
2. Open your theme.css / based.css file and paste the code in the bottom of the file.

@media screen and (max-width: 768px)
.slide_1,.slide_2,.slide_3 {
background: unset !important;
}

Thank You!

Go to Online Store → theme →Cusomize → Theme settings(cog icon) => “Custom CSS”

add below css:

.slide_1,.slide_2,.slide_3 {
background: none !important;
}

Hi @presharcy

If the code worked on your store, then please mark my comment as the solution!

Thank you.

Hi @presharcy

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > base.css and paste this at the bottow of the file:
@media screen and (max-width: 768px)
.slide_1,.slide_2,.slide_3 {
background: unset !important;
}