As title says.
Code: 1234
Result:
How to do it :
Access Shopify Admin:
Go to Online Store:
Customize Theme:
Access Theme Code Editor:
Locate CSS File:
Add Custom CSS at the End:
.utility-bar.color-scheme-1.gradient {
background-color: #000000 !important; /* You can change the color here*/
}
.utility-bar.color-scheme-1.gradient .announcement-bar__message {
color: #ffffff !important; /* You can change the color here */
}
Save Changes:
You can change the color of the Announcement bar in your Online Store > Themes > Customize, but make sure you select another color scheme for your announcement bar so that the change won’t affect other sections.
Hello @SamSukhoonNordl ,
I understand you are looking only looking to change background & text color of Announcement Bar.
Please follow the steps mentioned in Screenshot for the desired change -:
.utility-bar.color-scheme-1.gradient.utility-bar--bottom-border {
background: black;
}
p.announcement-bar__message.h5 {
color: white;
}
I hope the solution helps you.
Please share if you have any queries .
Thank you.