Community Tip - Your Friends List is a way to easily have access to the community members that you interact with the most! X
Hi,
CustomsCSS Code in the Article - CS332229 is not working in v9.3
#root_label-1 > .label-text.textsize-normal{ animation: blinkAnime 1s infinite alternate; } @keyframes blinkAnime { 0%{ color: #000000 } 100%{ color: #ffffff } }
Thanks in advance ,
Rushikesh K
Solved! Go to Solution.
.bl {
animation: blinker 1.5s linear infinite;
color: red;
font-family: sans-serif;
}
@keyframes blinker {
50% {
opacity: 0;
}
}
Try above code.
Lable classname "bl"
.bl {
animation: blinker 1.5s linear infinite;
color: red;
font-family: sans-serif;
}
@keyframes blinker {
50% {
opacity: 0;
}
}
Try above code.
Lable classname "bl"
Thank you Sathishkumar for the quick response.