修改帝国CMS系统的提示对话框
时间:2022-06-15
作者:周政
阅读数:人阅读
首先看看帝国CMS原系统的提示对话框:
然后将它改为如下图所示的提示对话框:
首先打开服务器文件,路径:/e/message/index.php 将下面的代码覆盖原文件内容即可。
然后将它改为如下图所示的提示对话框:
首先打开服务器文件,路径:/e/message/index.php 将下面的代码覆盖原文件内容即可。
<?php if(!defined('InEmpireCMS')) { exit(); } ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>信息提示</title> <link href="<?=$public_r[newsurl]?>e/data/images/qcss.css" rel="stylesheet" type="text/css"> <?php if(!$noautourl) { ?> <SCRIPT language=javascript> var secs=3;//3秒 for(i=1;i<=secs;i++) { window.setTimeout("update(" + i + ")", i * 1000);} function update(num) { if(num == secs) { <?=$gotourl_js?>; } else { } } </SCRIPT> <? } ?> </head> <body> <br> <br> <br> <br> <br> <br> <div class="tishi"> <p class="tishi_title">提示</p> <p class="tishi_text"><?=$error?></p> <p class="tishi_tiao"><a href="<?=$gotourl?>">如果您的浏览器没有自动跳转,请点击这里</a></p> <style> p{margin:0} .tishi{border: #ddd 1px solid; text-align:center; width:400px;margin:auto} .tishi_title{ background: #f2f2f2;;color: #000; line-height: 35px; font-size:16px;border-bottom: #ddd 1px solid;} .tishi_text{padding:20px} .tishi_tiao{margin-bottom:20px} @media screen and (max-width:768px) { .tishi{width:90%;} } </style> </div> </body> </html>
如果喜欢我的文章,你还可以订阅我的公众微信号,可以第一时间知晓最新内容!
扫一扫,关注微信公众号