- Posts: 14116
- Thank you received: 1639
Grey Column menu suddenly stops and becomes white
-
ivan.milic
Support Staff - Moderator
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
- Posts: 14116
- Thank you received: 1639
<script type=text/javascript>
jQuery(document).ready(function(){
var left_height = jQuery("#content_main").innerHeight();
left_height = Math.round(left_height * 1.015);
jQuery("#column_left").css({height: left_height});
/*FIX*/if(jQuery.browser.msie && jQuery.browser.version <= 7) jQuery("#column_left").css('margin-bottom',-20);
});
</script>
Please Log in to join the conversation.
-
Lazy Garfield
Inactive member - New Member
- Posts: 13
- Thank you received: 0
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
- Posts: 14116
- Thank you received: 1639
<script type=text/javascript>
jQuery(document).ready(function(){
var left_height = jQuery("#content_main").innerHeight();
left_height = Math.round(left_height * 1.015);
jQuery("#column_left").css({height: left_height});
/*FIX*/if(jQuery.browser.msie && jQuery.browser.version <= 7) jQuery("#column_left").css('margin-bottom',-20);
});
</script>
Please Log in to join the conversation.
-
Lazy Garfield
Inactive member - New Member
- Posts: 13
- Thank you received: 0
ivan.milic wrote: .outerHeight() is new to jQuery - it is not jet fully compatible. Thats why I have that check after read of it's value.If that doest not give result use this:
<script type=text/javascript>
jQuery(document).ready(function(){
var left_height = jQuery("#content_main").innerHeight();
left_height = Math.round(left_height * 1.015);
jQuery("#column_left").css({height: left_height});
/*FIX*/if(jQuery.browser.msie && jQuery.browser.version <= 7) jQuery("#column_left").css('margin-bottom',-20);
});
</script>
Thx a lot but this one does not solve the problem too.
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
- Posts: 14116
- Thank you received: 1639
Please Log in to join the conversation.