最近幾位網(wǎng)友問(wèn)我帝國(guó)cms如何修改跳轉(zhuǎn)提示框樣式以及跳轉(zhuǎn)的時(shí)間,,最近整理了一下,,如下:
帝國(guó)cms的提示框及修改跳轉(zhuǎn)時(shí)間的顯示模板是:e/message/index.php
提示框位于第41行,,代碼如下:
<table width="500" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder"> <tr class="header"> <td height="25"><div align="center">信息提示</div></td> </tr> <tr bgcolor="#FFFFFF"> <td height="80"> <div align="center"> <b><?=$error?></b> <a href="<?=$gotourl?>">如果您的瀏覽器沒(méi)有自動(dòng)跳轉(zhuǎn),,請(qǐng)點(diǎn)擊這里</a> </div></td> </tr> </table>
其樣式定義為class="tableborder",,所引用的樣式表在e/data/images/qcss.css文件中,。
跳轉(zhuǎn)時(shí)間位于e/message/index.php第18行:
代碼如下:
var secs=3;//3秒
將其修改為自己想要設(shè)定的時(shí)間即可,。