Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bogdanmoisin/8b94eba50b91a1f2bb95b00e21b6780b to your computer and use it in GitHub Desktop.
Save bogdanmoisin/8b94eba50b91a1f2bb95b00e21b6780b to your computer and use it in GitHub Desktop.
WooCommerce Change AJAX Spinner Gif On Checkout
/*
* Custom AJAX spinner on WooCommerce checkout
* The class used to load the overlay is .blockUI .blockOverlay
* The class used to load the spinner is .woocommerce .loader:before
*
*/
.woocommerce .blockUI.blockOverlay:before,.woocommerce .loader:before {
height: 3em;
width: 3em;
position: absolute;
top: 50%;
left: 50%;
margin-left: -.5em;
margin-top: -.5em;
display: block;
content: "";
-webkit-animation: none;
-moz-animation: none;
animation: none;
background: url('http://test-site.com/wp-content/themes/boss-child/images/spinning-logo.gif') center center;
background-size: cover;
line-height: 1;
text-align: center;
font-size: 2em;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment