As you can see from the attached image, my spinner on checkout is only being applied to the checkout form area, however I want the overlay to cover the entire page. Any help would be appreciated!
With no additional css, I found the same thing occurring, however, the css I’m using for this is a combination from this thread:
and this additional woocommerce spinner code:
The combination css is this:
.checkout.woocommerce-checkout.processing::before {
background-position: center center;
background-repeat: no-repeat;
z-index: 99999;
position: absolute;
content: ‘’;
width: 100vw!important;
height: 100vh!important;
display: block;
background-color: rgba(0, 0, 0, 0.50);
}
.woocommerce .blockUI.blockOverlay:before,.woocommerce .loader:before {
height: 4em;
width: 4em;
position: absolute;
top: 25%;
left: 45%;
margin-left: -.5em;
margin-top: -.5em;
display: block;
content: “”;
-webkit-animation: none;
-moz-animation: none;
animation: none;
background: url(‘https://litcessory.local/spinner.svg’) center center;
background-size: cover;
line-height: 1;
text-align: center;
font-size: 2em;
z-index: 999991;
}