Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hi, I would like to make the announcement bar black and the text white, it's not possible in the color settings, I tried.
Link: https://sophia-shop.com/products/adora-dress
Hi @evatrnt
Try this one.
.announcement__bar-outer .announcement__bar-holder {
background-color: #000;
}
.announcement__message {
color: #fff;
}
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!
HEllo @evatrnt
Go to online store ----> themes ----> actions ----> edit code ---->theme.css
add this code at the end of the file and save.
.announcement__slide.announcement__bar {
color: white !important;
background: black !important;
}
result
If this was helpful, hit the like button and accept the solution.
Thanks
HI @evatrnt
announcement-bar.announcement__bar-outer * {
background: black !important;
color: white !important;
}