I am using the following code, it fades on adding the code but once refreshed it never does it again:
@keyframes fadeInOut {
0% { opacity: 0; }
100% { opacity: 1; }
}
#yui_3_17_2_1_1718193787996_573 {
opacity: 0; /* Initial state: invisible */
animation: fadeInOut 3s ease-in-out forwards; /* forwards ensures it stays at opacity: 1 after the animation */
}
It seems that maybe the item ID for this text block keeps changing