perfect! Thank you very much! I'm glad I bought from you, surely I will continue to buy here! To give to other users the complete code I write:
Code:
<script type="text/javascript">
jQuery(document).ready(function(){
setInterval(function(){
var w = 0;
jQuery(" .column_left_top,.content_wrap,.column_right_top").css('height','auto');
jQuery(" .column_left_top,.content_wrap,.column_right_top").each(function(i){
if(jQuery(this).innerHeight() > w) w = jQuery(this).innerHeight();
});
jQuery(" .column_left_top,.column_right_top").css('height',(w - 20) + 'px');
jQuery(".content_wrap").css('height',(w - 9) + 'px');
},1000);
});
</script>
ps: I used the values w-20 and w-9 in some parts of the text to align exactly the columns