I am trying to change the color of the text on my second slideshow since the white is hard to read, what code do I need to add and where to add it?
here’s my website: https://dragonflyeg.com/
Thanks!
I am trying to change the color of the text on my second slideshow since the white is hard to read, what code do I need to add and where to add it?
here’s my website: https://dragonflyeg.com/
Thanks!
Please add below css in bottom of assets/theme.css file
.slideshow__slide–slideshow-1.is-selected .animation-contents {
color: red; (you can change any color over here)
}
Thank you.
Thank you! this worked perfectly, any idea how i can change the color of the text on the button as well?
I just wanted to share a solution for a related problem. If the slideshow button TEXT color gets automatically changed depending on button BG color.
In my case the button TEXt should be white but gets changed to black as the button bg just passed the “too light so change text to black” point.
You will find the setting in slideshow.liquid
{% if accent_brightness > 40 %}
color: #000 !important;
{% endif %}
I changed mine from 40 % to 50 % and now the button text is white instead of black.