Grey Column menu suddenly stops and becomes white

More
13 years 10 months ago #5670 by ivan.milic
index.php of template

Please Log in to join the conversation.

More
13 years 10 months ago #5671 by ivan.milic
.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>

Please Log in to join the conversation.

More
13 years 10 months ago #5672 by Lazy Garfield
Thx for the answer, done but failed.

Please Log in to join the conversation.

More
13 years 10 months ago #5673 by ivan.milic
Ok, try second script I sent you:

<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.

More
13 years 10 months ago - 13 years 10 months ago #5674 by Lazy Garfield

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. B)
Last edit: 13 years 10 months ago by Lazy Garfield.

Please Log in to join the conversation.

More
13 years 10 months ago #5675 by ivan.milic
But I see on your page that there is no longer white space (from safari)?

Please Log in to join the conversation.

Time to create page: 0.121 seconds
Powered by Kunena Forum