- UID
- 680852
- 积分
- 0
- 金币
- 66
- 精华
- 0
- 威望
- 0
- 贡献
- 0
- 阅读权限
- 220
- 注册时间
- 2011-10-7
- 最后登录
- 2026-5-3
- 在线时间
- 0 小时
热心网友
- 金币
- 66
- 阅读权限
- 220
- 精华
- 0
- 威望
- 0
- 贡献
- 0
- 在线时间
- 0 小时
- 注册时间
- 2011-10-7
|
楼主 |
发表于 2020-2-28 15:18:13
|
显示全部楼层
Discuz默认模板960px改为1200px方法
\template\default\style\t1\nv.png \template\default\style\t2\nv.png \template\default\style\t3\nv.png \template\default\style\t4\nv.png \template\default\style\t5\nv.png \static\image\common\mu_bg.png 以上目录文件宽度改为 1200px
\template\default\common\common.css 文件查找 .wp { margin: 0 auto; width: 960px; } #wp .wp { width: auto; } 复制代码 替换为: .wp { margin: 0 auto; width: 1200px; } #wp .wp { width: auto; } 复制代码 查找
#toptb { min-width: 960px; border-bottom: 1px solid {COMMONBORDER}; background: {COMMONBG}; line-height: 28px; } 复制代码 替换为: #toptb { min-width: 1200px; border-bottom: 1px solid {COMMONBORDER}; background: {COMMONBG}; line-height: 28px; } 复制代码
\template\default\common\widthauto.css 文件查找 #hd .wp, #wp { min-width: 960px; } 复制代码 替换为: #hd .wp, #wp { min-width: 1200px; } 复制代码 |
|