- Posts: 41
- Thank you received: 1
Customisation questions
-
twobrains
Inactive member - Member
Less
More
14 years 1 month ago #3753
by twobrains
Hello, Milos!
I have the same problem with Opera and Explorer and Safari..
Is it possible to fix it?
Regards, Sergio
Replied by twobrains on topic Re: Customisation questions
gayle wrote: Thanks Milos:
Querstion 5 - I use firefox browser
It doesnt extend down on Internet Explorer/safari or opera either
Hello, Milos!
I have the same problem with Opera and Explorer and Safari..
Is it possible to fix it?
Regards, Sergio
Please Log in to join the conversation.
-
twobrains
Inactive member - Member
Less
More
- Posts: 41
- Thank you received: 1
14 years 1 month ago #3754
by twobrains
Replied by twobrains on topic Re: Customisation questions
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
14 years 1 month ago #3757
by ivan.milic
Replied by ivan.milic on topic Re: Customisation questions
Hi,
There is an problem with jquery function .height() , instead .innerHeight() shold be used. The problematic script block:
<script type="text/javascript">
jQuery(document).ready(function(){
var left_height = jQuery("#content_main").height();
jQuery("#column_left").css({height: left_height});
});
</script>
Should look like these:
<script type="text/javascript">
jQuery(document).ready(function(){
var left_height = jQuery("#content_main").innerHeight();
jQuery("#column_left").css({height: left_height});
});
</script>
Regards,
Ivan
There is an problem with jquery function .height() , instead .innerHeight() shold be used. The problematic script block:
<script type="text/javascript">
jQuery(document).ready(function(){
var left_height = jQuery("#content_main").height();
jQuery("#column_left").css({height: left_height});
});
</script>
Should look like these:
<script type="text/javascript">
jQuery(document).ready(function(){
var left_height = jQuery("#content_main").innerHeight();
jQuery("#column_left").css({height: left_height});
});
</script>
Regards,
Ivan
Please Log in to join the conversation.
-
twobrains
Inactive member - Member
Less
More
- Posts: 41
- Thank you received: 1
14 years 1 month ago #3758
by twobrains
Replied by twobrains on topic Re: Customisation questions
Hi Ivan.
What page has to be changed?
Thanks, regards
Sergio
What page has to be changed?
Thanks, regards
Sergio
Please Log in to join the conversation.
Time to create page: 0.107 seconds