VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: Jason dsg on July 01, 2016, 06:08:44 AM

Title: Cart pop up shadow
Post by: Jason dsg on July 01, 2016, 06:08:44 AM
How do you remove the shadow on the popup see attached photo website www.dsgcentral.com
Title: Re: Cart pop up shadow
Post by: GJC Web Design on July 01, 2016, 09:27:34 AM
#fancybox-content {
  background: #b9298b none repeat scroll 0 0;

}
Title: Re: Cart pop up shadow
Post by: GJC Web Design on July 02, 2016, 09:54:32 AM
Your template is missing fancybox css etc.. compare with the standard vm template
Title: Re: Cart pop up shadow
Post by: 2dmaster on July 03, 2016, 18:56:27 PM
maybe time to upgrade all  virtuemart fancybox to v2 ??? why developers no upgrade it ??

vmprices.js

Virtuemart.cartEffect = function(form) {

   var dat = form.serialize();
   if(usefancy){
      jQuery(".fancybox").fancybox(); 
      jQuery.fancybox.showLoading();  //v2.x

/*
$.fancybox.showActivity(); //v1.3.x
you should use

$.fancybox.showLoading(); //v2.x
.... and instead of

$.fancybox.resize(); //v1.3.x
you should use
$.fancybox.update(); //v2.x
*/

   }