How can I alter the color scheme of slide show buttons?

How can I edit the colour scheme of the button on these slide shows without impacting the buttons in other sections?

Thanks :slightly_smiling_face:

@houssamalissa

Please Go to Online Store โ†’ Themes โ†’ Edit code โ†’ Assets โ†’ theme.scss.liquid and paste this code at the end of this file.

#shopify-section-1628688271d06dcc1f .slideshow-wrapper .hero__text-wrap .hero__link .animation-contents  .btn {
color: #ffffff !important; /* to change the color of text */
background-color: #000000 !important; /* to change the background color */
}

#shopify-section-1628688271d06dcc1f .slideshow-wrapper .hero__text-wrap .hero__link .animation-contents  .btn:hover {
color: #000000 !important; /* to change the color of text on hover*/
background-color: #ffffff !important; /* to change the background color on hover */
}
1 Like

Brilliant! Thank you!!

1 Like

Question:

How do I find the equivalent part of the code (red) for other sections? Iโ€™d like to be able to change button colours elsewhere but not sure how to construct this bit belowโ€ฆ

#shopify-section-1628688271d06dcc1f .slideshow-wrapper .hero__text-wrap .hero__link .animation-contents .btn {

@houssamalissa Please let me know in which section do you want to change the color?

1 Like