How can I change the beige color on my online store?

I would like the beige gone but dont know how to remove it. My store: https://thenookspot.myshopify.com/

Hi I see you are using Sense Theme.

  1. From your Shopify admin, go to “Online Store” and select “Themes.”
  2. Click on the “Customize” button for the theme Sense.
  3. On Homepage and on Section Slideshow Edit “Custom CSS” and add this css :

To Change background and remove border.

.slideshow__controls {
  background-color: transparent;
  border: none;
}

To Remove the control block :

.slideshow__controls {
  display: none;
}

I have screenshot how to edit.

Hi @TheNook ,

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file theme.liquid

Step 3: Paste the below code at the bottom of the file → Save


Hope my solution works perfectly for you!

Best regards,

Oliver | PageFly

Thank you