刚做的门户页面,想在内容页添加广告,论坛后台自带的始终无法添加成功,所以就在网上找,终于找到了,现在分享给大家
1.首先,在后台--运营--站点广告——自定义广告位。(注意:一定要新建自定义广告位,否则无法调用)
2.建议设置为宽度不超过400px,高度不超过400px的广告
3.接下来, 打开template/default/portal/view.htm文件
4.用记事本打开文件,找到一下代码5.将以上代码替换为- <div style="width:638;float:left;">
- <div style="float:left;">
- <div style="width:336px;height:280px;float:left;background:#FFF;">
- <!--{ad/custom_1}--></div> $content[content]</div>
- </div>
复制代码 其中的<div style="width:360px;height:300px;float:left;background:#FFF;">为广告位的大小和广告在内容页的位置(float:left)、背景颜色;
其中float:left;为内容页广告居左- <FONT color=black><div style="width:638;float:left;">
- <div style="float:left;">
- <div style="width:336px;height:280px;float:right;background:#FFF;">
- <!--{ad/custom_1}--></div> $content[content]</div>
- </div></FONT>
复制代码 改为float:right;为内容页广告居右
<!--{ad/custom_1}-->为后台自定义广告位内部调用代码。
最后,上传文件(注意备份),再到后台--工具-更新缓存。去内容页看看吧,广告位已经正常显示了。 |