Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #752439

    Is there a way to make this red background blink / flash in the menu bar?

    #752460

    Hey kilimats,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .live>a>span.avia-menu-text:before {
      animation: blinker 1s linear infinite;
    }
    
    @keyframes blinker {  
      50% { opacity: 0; }
    }
    

    Best regards,
    Yigit

    #752468

    wow thats awesome, is there a way to only have the red background blink?

    #752472

    Hi!

    Please change the code to following one

    @-webkit-keyframes blinker {
        0%   { background-color: transparent; }
        49% { background-color: transparent; }
        50% { background-color: #FF0000; }
        99% { background-color: #FF0000; }
        100% { background-color: transparent; }
      }
      @-moz-keyframes blinker {
        0%   { background-color: transparent; }
        49% { background-color: transparent; }
        50% { background-color: #FF0000; }
        99% { background-color: #FF0000; }
        100% { background-color: transparent; }
      }
      @keyframes blinker {
        0%   { background-color: transparent; }
        49% { background-color: transparent; }
        50% { background-color: #FF0000; }
        99% { background-color: #FF0000; }
        100% { background-color: transparent; }
      }
    .live>a>span.avia-menu-text:before {
      -webkit-animation: blinker 1s infinite;
      -moz-animation:    blinker 1s infinite;
      animation:         blinker 1s infinite;
    }

    Regards,
    Yigit

    #752478

    you nailed it! thank you so much!

    you think you can help me here as well? https://kriesi.at/support/topic/add-a-picture-beside-icon-list/

    #752484

    Hey!

    You are welcome :)
    Replied already

    Regards,
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Make red background in menu blink?’ is closed to new replies.