Archived topic
Blink on Top Bar
5 replies · Started by Parag Agarwal on February 21, 2023
I want a blink top bar, like a GIF, please help in this regard.
Hi Parag,
Can you provide a reference site or any example of this blinking effect?
If you can see my website http://www.crickhit.com I have placed a link on the top bar with the name "Paytm Money". I want this red color top bar to have a blink effect with 2 or more colors so that it can be the point of attraction on my website.
Try adding this through Appearance > Customize > Additional CSS:
.top-bar.grid-container {
animation: changeCol 3s ease infinite;
}
@keyframes changeCol {
0% {
background-color: #00ff00;
}
50% {
background-color: #ff0000;
}
100% {
background-color: #00ff00;
}
}
Replace the background-color hex values with your preferred color values.
Thanks
You're welcome, Parag!