1、积分提示弹出框的宽度,打开 template/default/common/common.css,查找:
/* 用于积分奖励提示等弹出层提示 */
- .pc_inner { background: #ff6951; background-image: linear-gradient(90deg, #F60,#FF9800,#F60); border-radius: 6px; border: none; min-width: 249px; height: 48px; padding-left: 15px; padding-right: 15px; box-shadow: 0 0 8px rgba(88,88,88,.3); line-height: 48px; box-sizing: border-box; text-align: center; white-space: nowrap; }
复制代码
代码里边的 min-width: 就是宽度。
2、修改提示框的时间,打开 static/js/common_extra.js,查找:
- setTimeout(function () {hideMenu(1, 'prompt');$('append_parent').removeChild($('ntcwin'));}, 1500);
复制代码
1500,单位是毫秒,就是你要修改的时间。
修改后记得要到后台更新缓存和更新浏览器的缓存。 |