change colour of slideshow bottom section

change colour of slideshow bottom section

ads18922
Trailblazer
190 0 58

hello, i want to change the colour of the bottom bit of my slideshow, as i cant seem to assign it a color scheme. It is currently white, but i want to change it to color code: #164B3B:

Screenshot 2025-05-19 at 16.29.57.png

my website is www.antico-abito.com , theme is dawn

 

Replies 4 (4)

GTLOfficial
Shopify Partner
878 181 192

Hello @ads18922 
Go to online store ----> themes ----> actions ----> edit code ----> assets ---> component-slideshow.css
add this code at the end of the file and save.

.slideshow__controls.slideshow__controls--top.slider-buttons {
background: #164B3B !important;
}

result
5.png

If this was helpful, hit the like button and accept the solution.
Thanks

- Buy me a Pizza
- If helpful then please Like and Accept Solution.
- Want to modify or custom changes or bug fix on the store Hire me. GTL web solutions
- Want Complete Storefront: Send an email ⇨- Email: info@gtlofficial.com - Skype: ritesh_27dh

DrewOswald
Shopify Partner
78 16 22

Add this CSS to the Custom CSS area in your Slideshow Section:

(Note: I also included --color-foreground so that the color of the dots and arrows can be adjusted as well. It looks a bit odd but --color-foreground is actually in RGB. Example: R, G, B => 255, 255, 255)

  .slideshow__controls {
    background: #164b3b;
    --color-foreground: 255, 255, 255;
  }

002.png

devDrew webDev · Need a developer? Send me a DM.
Follow me on Instagram for Shopify Tips & Tricks: https://www.instagram.com/devdrew.webdev/
Kakii07
Visitor
1 0 0

I had the same problem but DrewOswald fixed it half for me... But I also need to change the colors of the blue numbers in the middle.

Kakii07_0-1748522843110.png

 

 
DrewOswald
Shopify Partner
78 16 22

Sorry about that here's the updated CSS so now --color-foreground will affect the rest of the slideshow controls elements.

.slideshow__controls {
  background: #164b3b;
  --color-foreground: 255, 255, 255;
  color: rgb(var(--color-foreground));
}

 

devDrew webDev · Need a developer? Send me a DM.
Follow me on Instagram for Shopify Tips & Tricks: https://www.instagram.com/devdrew.webdev/