VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: kaiserdom on October 06, 2018, 19:00:28 PM

Title: Remove semi-transparent background color on AJAX loading
Post by: kaiserdom on October 06, 2018, 19:00:28 PM
Hello

Is there a way to disable the AJAX loading background color (it's semi-transparent) when I select a multivariant in product details view? I only need the arrow loading icon but not the background color.

JM 3.8.12
VM 3.4.0
PHP 7.1.22
Title: Re: Remove semi-transparent background color on AJAX loading
Post by: GJC Web Design on October 06, 2018, 22:08:28 PM
.vmLoadingDiv {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.2) url('../images/vm-preloader.gif') 50% 45% no-repeat;
}

change

background: rgba(255, 255, 255, 0) url('../images/vm-preloader.gif') 50% 45% no-repeat;
Title: Re: Remove semi-transparent background color on AJAX loading
Post by: kaiserdom on October 08, 2018, 08:25:30 AM
Thank you so much :D