Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Help to make layout 100% height Re: Help to make layout 100% height

#134882
unasAquila
Participant

maybe try window

$(document).ready(function() {

if ($(‘#sidebar’).height() < $(window).height()){
$(‘#sidebar’).css(‘height’, $(window).height()+’px’);
}

if ($(‘#content’).height() < $(window).height()){
$(‘#content’).css(‘height’, $(window).height()+’px’);
}

initMenus();

});