- Posts: 14116
- Thank you received: 1639
Problem with Hot Joomla Gallery
-
ivan.milic
Support Staff -
- Moderator
-
Less
More
12 years 11 months ago - 12 years 11 months ago #18088
by ivan.milic
Replied by ivan.milic on topic Re: Problem with Hot Joomla Gallery
add some extra space:
heights.push(jQuery('#' + this.boxes).innerHeight() + 200);
heights.push(jQuery('#' + this.boxes).innerHeight() + 200);
Last edit: 12 years 11 months ago by ivan.milic.
The following user(s) said Thank You: ted_hotj
Please Log in to join the conversation.
-
ivan.milic
Support Staff -
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
12 years 11 months ago #18089
by ivan.milic
Replied by ivan.milic on topic Re: Problem with Hot Joomla Gallery
If that also does not help in index.php of template you will see block like this:
replace it with this:
Code:
<script type="text/javascript">
window.onload = function() {
BoxHeights.equalise('column_left','content_and_right');
}
</script>
replace it with this:
Code:
<script type="text/javascript">
var colH_fn = function(){
try{
var left_height = jQuery("#content_main").innerHeight();
if(left_height < jQuery(".column_left_pad").innerHeight()){
left_height = jQuery(".column_left_pad").innerHeight();
}
jQuery("#column_left").css('height',String(left_height) + 'px');
}catch(ex){}
};
window.setInterval(function(){
colH_fn();
},1000);
</script>
Please Log in to join the conversation.
Time to create page: 0.080 seconds