Comment to 'Add Pulse to Menu Icon'
  • That's rather strange... are you able to take and share a screenshot here of what your HEAD injection looks like? In the meantime, also try this.

    <style>
     @keyframes pulse-animation {
      0% {
          font-size-adjust: 0.5; }
     
      100% {
        font-size-adjust: 0.7;
      }
    }
    
    i.bars {
        animation-name: pulse-animation;
        animation-duration: 2s;
        animation-iteration-count: infinite;
        animation-direction: alternate;
        animation-timing-function: ease-in-out;
    }
    </style>
    

    There's not much difference between the CSS I provided before aside from renaming the animation and removing all CSS comments.

    Also try clearing your cache from the Dashboard from Studio.