Skip to content

Snippet: Change the WPBakery Post Grid Preloader Color

Simply change the #000 hex color to your desired hex value.

@-webkit-keyframes load7 {
    0%,
    80%,
    100% {
      box-shadow: 0 2.5em 0 -1.3em #000;
    }
    40% {
      box-shadow: 0 2.5em 0 0 #000;
    }
  }
  @keyframes load7 {
    0%,
    80%,
    100% {
      box-shadow: 0 2.5em 0 -1.3em #000;
    }
    40% {
      box-shadow: 0 2.5em 0 0 #000;
    }
  }
Back To Top