- Posts: 28
- Thank you received: 0
Re: Probelm Right module and central module
-
Eco
Inactive member -
Topic Author
- Member
-
Less
More
12 years 10 months ago #18931
by Eco
Replied by Eco on topic Re: Probelm Right module and central module
Hi Milos,
thank you for your support. The trouble you have signal me (the comma before 'c4') is caused by the PHP code - I suggest you to check it - due it don't schedule all the needed 'if' conditions before the comma...
Anyway, I have solved the trouble. But...
If you go on page www.viaggigarantiti.it/ and scroll down, you'll see the new trouble: the footer don't go down fully, but stay over last hotel's boxes...
Can you tell me how I can act to solve this too?
Thank you again very much!
thank you for your support. The trouble you have signal me (the comma before 'c4') is caused by the PHP code - I suggest you to check it - due it don't schedule all the needed 'if' conditions before the comma...
Anyway, I have solved the trouble. But...
If you go on page www.viaggigarantiti.it/ and scroll down, you'll see the new trouble: the footer don't go down fully, but stay over last hotel's boxes...
Can you tell me how I can act to solve this too?
Thank you again very much!
Please Log in to join the conversation.
-
ivan.milic
Support Staff -
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
12 years 10 months ago #18948
by ivan.milic
Replied by ivan.milic on topic Re: Probelm Right module and central module
try this:
Open
templates\hot_destinations\js\equal_hights.js
around line 10:
for (var i=0;i<this.num;i++) $(arguments).style.height = this.maxh+"px";
change it to this:
for (var i=0;i<this.num;i++) $(arguments).style.minHeight = this.maxh+"px";
Open
templates\hot_destinations\js\equal_hights.js
around line 10:
for (var i=0;i<this.num;i++) $(arguments).style.height = this.maxh+"px";
change it to this:
for (var i=0;i<this.num;i++) $(arguments).style.minHeight = this.maxh+"px";
Please Log in to join the conversation.
-
Eco
Inactive member -
Topic Author
- Member
-
Less
More
- Posts: 28
- Thank you received: 0
12 years 10 months ago #18964
by Eco
Replied by Eco on topic Re: Probelm Right module and central module
Hi milic thank u for u valuable suppport... 
I made the change and everything is ok with the center box
I still have the same problem on the left box ... u can support me ??

I made the change and everything is ok with the center box
I still have the same problem on the left box ... u can support me ??
Please Log in to join the conversation.
-
ivan.milic
Support Staff -
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
12 years 10 months ago #18972
by ivan.milic
Replied by ivan.milic on topic Re: Probelm Right module and central module
ok i told you by mistake to use :
setTimeout
you need to use:
setInterval
(maybe you can than return previous change (height->minHeignt) back)
setTimeout
you need to use:
setInterval
(maybe you can than return previous change (height->minHeignt) back)
Please Log in to join the conversation.
-
Eco
Inactive member -
Topic Author
- Member
-
Less
More
- Posts: 28
- Thank you received: 0
-
ivan.milic
Support Staff -
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
12 years 10 months ago #18992
by ivan.milic
Replied by ivan.milic on topic Re: Probelm Right module and central module
jQuery(document).ready(function(){
setTimeout(function(){
/////THE EQUALIZATION FUNCTIONS
///////////////
//---put here php generated BoxHeights.equalise(....) functions---//
/////END EQUALIZATION FUNCTIONS//////////////////
},500);
});
setTimeout(function(){
/////THE EQUALIZATION FUNCTIONS

//---put here php generated BoxHeights.equalise(....) functions---//
/////END EQUALIZATION FUNCTIONS//////////////////
},500);
});
Please Log in to join the conversation.
Time to create page: 0.093 seconds