level 1
zh7531506
楼主
DEDECMS5.7 图集图片太大导致布局混乱或者导致图片太大超出正文边框不显示超出部分解决办法,
晚上搜索的办法都是不怎么清晰明了,
现把我摸索出来的步骤贴出来
用FTP工具修改picture.css 即可
路径:templets/default/style/picture.css
把里面的代码
a img {
border:none;
}
替换成
img,a img{
border:0;
margin:0;
padding:0;
max-width:650px;
width: expression(this.width > 650 && this.width > this.height ? 650px : 'auto';);
max-height:1650px;
height: expresion(this.height > 1650 ? 1650px : 'auto';);
}
刷新页面即可-肥鸡网络
2013年03月02日 02点03分
1
晚上搜索的办法都是不怎么清晰明了,
现把我摸索出来的步骤贴出来
用FTP工具修改picture.css 即可
路径:templets/default/style/picture.css
把里面的代码
a img {
border:none;
}
替换成
img,a img{
border:0;
margin:0;
padding:0;
max-width:650px;
width: expression(this.width > 650 && this.width > this.height ? 650px : 'auto';);
max-height:1650px;
height: expresion(this.height > 1650 ? 1650px : 'auto';);
}
刷新页面即可-肥鸡网络