Site logo

[Resolved] Blink on Top Bar

Home Forums Support [Resolved] Blink on Top Bar

Home Forums Support Blink on Top Bar

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #2542074
    Parag Agarwal

    I want a blink top bar, like a GIF, please help in this regard.

    #2542103
    Fernando
    Customer Support

    Hi Parag,

    Can you provide a reference site or any example of this blinking effect?

    #2542128
    Parag Agarwal

    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.

    #2542151
    Fernando
    Customer Support

    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.

    #2542171
    Parag Agarwal

    Thanks

    #2542197
    Fernando
    Customer Support

    You’re welcome, Parag!

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.