如何修改织梦系首页栏目下面的广告位置高度,急!速度
以超级管理员身份登陆系统后台,点击[模块]-[辅助插件]-[广告管理]进入广告管理页面;
点击“增加一个新广告”,来增加一个广告,这里我们进入增加广告位置的页面有如下信息需要填写:
·广告位标识:用于区分不同广告位的唯一标识,需要使用英文或者数字标识
例如:topbanner、toptext、indexmidad1、indexmind2等
·广告投放范围:选择相应广告投放的栏目,如果在所选栏目中找不到指定广告标识内容,系统会自动搜索父栏目
·广告位名称:用来管理广告的中文名称,例如:topbanner 顶部banner广告
·时间限制:自己设定广告过期时间
·展现方式:广告展现的形式,有HTML代码、文字链接、和Flash几种
·广告内容:根据选择不同的展示方式填写不同的广告内容
·过期显示内容:如果设置了广告有效期,过期后显示的内容
3 广告添加完毕后提交确定保存广告信息,系统跳转到广告管理页面,在管理页面我们可以查看到广告的编号、广告名称、投放范围、广告代码。
以下为引用的内容:
广告代码分为2种:DedeCMS标签形式、JS形式,如果你的网站广告经常(定期)更新全站html,可以使用标签形式广告代码{dede:myad name='topbanner'/}加入到网站模板中去。如果不经常进行全站html更新,建议选用js形式的广告代码:
<script src='http://wwwdedecmscom/plus/ad_jsphpaid=1' language='javascript'></script>
4在相应模板中加入了广告标签代码之后生成相应的html文件即可。
漂浮广告用如下代码:
<html xmlns="http://wwww3org/1999/xhtml"><head>
<title>js实现可关闭的自由漂浮广告代码_js特效_特效代码_wwwxunmzycom</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<style type="text/css">
#img1{width:auto;position:absolute;top:43px;left:2px;z-index:10;}
#img1 div{width:auto;text-align:right;font-size:12px;}
#img1 div a:link{text-decoration:none;}
#img1 div a:hover{color:red;text-decoration:none;}
#img1 img{width:auto;border:1px solid black;}
p{margin-top:50px;text-align:center;}
</style>
</head>
<body>
<div id="img1" onmouseover="pause_resume()" onmouseout="pause_resume()">
<div><a href="javascript:void(0);" onclick="closediv()" title="点击关闭">关闭</a></div>
<a href="https://wwwxunmzycom/" target="_blank"><img src="images/logo_pngpng" alt="js实现可关闭的自由漂浮广告代码"></a>
</div>
<p>js代码可关闭的自由漂浮的广告特效</p>
<script type="text/javascript">
var xPos = 300;
var yPos = 200;
var step = 1;
var delay = 30;
var height = 0;
var Hoffset = 0;
var Woffset = 0;
var yon = 0;
var xon = 0;
var pause = true;
var interval;
var divid = img1; //浮动DIV的ID
dividstyletop = yPos;
function changePos(){
width = documentbodyclientWidth;
height = documentbodyclientHeight;
Hoffset = dividoffsetHeight;
Woffset = dividoffsetWidth;
dividstyleleft = xPos + documentbodyscrollLeft;
dividstyletop = yPos + documentbodyscrollTop;
if(yon){yPos = yPos + step;}else{yPos = yPos - step;}
if(yPos < 0){yon = 1;yPos = 0;}
if(yPos >= (height - Hoffset)){yon = 0; yPos = (height - Hoffset);}
if(xon){xPos = xPos + step;}else{xPos = xPos - step;}
if(xPos < 0){xon = 1;xPos = 0;}
if(xPos >= (width - Woffset)){xon = 0; xPos = (width - Woffset);}
}
function start(){
dividvisibility = "visible";
interval = setInterval('changePos()',delay);
}
function pause_resume(){
if(pause){
clearInterval(interval);
pause = false;}
else{
interval = setInterval('changePos()',delay);
pause = true;
}
}
function closediv(){
clearInterval(interval);
dividstyledisplay = "none";
}
start();
</script>
</body>
</html>
把需要改的地方改了就可以了,
找到dedecmscss样式表中的header title h1 a {
display: block;
height: 54px;
overflow-x: hidden;
overflow-y: hidden;
width: 216px;
}把height高度改成你自己的高度就行了。
带广告的效果
进入dede后台模板:查找/dede/templets/loginhtm源文件,用Dreamweave打开,找到广告代码,直接删掉并保存loginhtm文件。
<divclass="dede-iframe"><iframe name="loginad"src="loginphpdopost=showad" frameborder="0"id="loginad" scrolling="no" marginwidth="0"marginheight="0"width="100%"></iframe></div>
打开dede/loginphp文件查看源代码,对应着loginphp第42到46行部分代码,去掉这部分代码即可:if ($dopost=='showad')
{
include('templets/login_adhtm');
exit;
}
删除对应的/dede/templets/login_adhtm模板文件,这个文件是多余的。
删除对应的广告样式,打开dede/css/logincss 样式文件,找到
dede-iframe{margin:0auto;width:640px;}dede-ad{border:5px solid#eee;background-color:#fff;width:630px;margin:0 auto;}dede-ad ul{padding:10px0 10px 3px;overflow:hidden;zoom:1;}dede-ad ulli{float:left;display:inline;width:120px;height:60px;margin-left:4px;}dede-adul li img{width:120px;height:60px;}
如果本地测试网站刷新后台登录即可看到修改后效果,如果是在服务器上的网站需要上传修改过的文件覆盖原文件,刷新即可。
0条评论