Comments on 8byte All Comments Start of Thread Parent

Ah do you have the animation CSS available for use?

It's a small snippet so I don't have it posted anywhere! It's a very simple keyframes animation.

Can you maybe help me add that to my profile page? Where the focal image is of my character?

@keyframes upAndDown {
  0% {
    transform: translateY(7px);
  }
  100% {
    transform: translateY(-7px);
  }
}

I put this on my profile and it didn't quite work.. Is there a way I can send you my whole profile code and then have you add it where it needs to go?

You need to add the animation specifically to the image! You can ask in the help forums for more help; I don't feel comfortable giving out exact custom code snippets, sorry!