Home News Contact Us Forum About Us Demos Products F.A.Q.
Shopping Cart
You currently have 0 items in your cart.


Recent Events
  • 31/12/2023 New Year SALE

    We are glad to announce New Year SALE. 25% discount for all our extensions. Use NY24 coupon code. Hurry up the discount is valid till 7 January.

  • 21/11/2023 BLACK FRIDAY 23 is coming

    BIG SALE, 35% discount for all our extensions. Use BF23 coupon code. Hurry up the discount is valid till 27 November.


2Checkout.com, Inc. is an authorized retailer of goods and services provided by ARI Soft. 2CheckOut




Follow us on twitter



Welcome, Guest
Please Login or Register.    Lost Password?

The lightbox is not open
(1 viewing) (1) Guest
Go to bottomPage: 12
TOPIC: The lightbox is not open
#14979
Re:The lightbox is not open 12 Years, 10 Months ago Karma: 0
Hi Ari,

Sorry, there were some updates to the site, please kindly check the adm, since the effect of video is not working in IE8.
Or tell me how to go about upgrading.
The administrator has disabled public write access.
 
#15024
Re:The lightbox is not open 12 Years, 10 Months ago Karma: 746
Hello,

This problem with the next javascript file your site template:

<joomla_directory>/templates/theme520/scripts/maxheight.js

Open this file, find the next code:

Code:


 expand: function() {
    this.reset();
   for (var i = 0; i < this.elements.length; i++) {  
      this.elements[i].style.height = document.getDimensions(this.elements[i].parentNode).height + 'px';
   }
  },



and replace it with the following code:

Code:


  expand: function() {
 if (this.stopExpand)
 return ;
  
this.stopExpand = true;
    this.reset();
   for (var i = 0; i < this.elements.length; i++) {
      this.elements[i].style.height = document.getDimensions(this.elements[i].parentNode).height + 'px';
   }

   var self = this;
   setTimeout(function() {
   self.stopExpand = false; 
   }, 1);
  },



Regards,
ARI Soft
The administrator has disabled public write access.
 
Go to topPage: 12