|
|
admin里面的 index.tpl.php <iframe name="right" id="rightMain" 的上层 <div class="content" id="rightinnercontent" style="position:relative; overflow:hidden;"> 新增ID rightinnercontent
增加js 修改wSize()
if(strs[1]<980){
$('.header').css('width',980+'px');
$('#content').css('width',980+'px');
$('#rightinnercontent').css('height',$("#rightMain").height()+30+'px'); //新增
Body.attr('scroll','');
Body.removeClass('objbody');
}else{
$('.header').css('width','auto');
$('#content').css('width','auto');
$('#rightinnercontent').css('height',$("#rightMain").height()+30+'px'); //新增
Body.attr('scroll','no');
Body.addClass('objbody');
}
|
|