Hello,
I have the Canopy theme and would like to change the color of the arrows in the Logo List feature and do not see an easy way to do this with the current code. Can someone help me with a code I can copy and paste in to edit this? Ideally I would like it to be #ffffff instead of it taking on the background color as the grey is not as visible on blue.
website: gamekastle.myshopify.com
passcode: gameon
Please add below css code at bottom of assets/styles.css file
.cc-carousel–previous svg, .cc-carousel–next svg {
fill: #ffffff;
}
Thank you.
Hello There,
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset → style.css and paste this at the bottom of the file:
.cc-carousel--previous.cc-animate-init.cc-initialized.-in.cc-animate-complete svg {
fill: #fff
}
.cc-carousel--previous svg, .cc-carousel--next svg {
color: #fff;
}