hello, can someone give me code to make my announcement bar text blink?
password: bf22
A user requested CSS code to create a blinking effect for their website’s announcement bar text.
Solution Provided:
base.css file in Shopify’s theme code editor@keyframes animation with opacity transitions to create the blinking effectOutcome:
hello, can someone give me code to make my announcement bar text blink?
password: bf22
Hello @ExoticSouls ![]()
In Shopify Admin, you can go to Edit theme code, open file base.css and add this code snippet at the bottom
.announcement-bar__message {
animation: blinker 1s linear infinite;
}
@keyframes blinker {
50% {
opacity: 0;
}
}
The announcement bar should then blink. Hope that helps!
worked, thank you
You are welcome ![]()