如何在博客上添加背景广告

时间:2013-01-25 17:21:18

标签: background-image blogger

做这样的事情是否可行?我想在我的博客博客中添加像http://goo.gl/xSmwq这样的背景可点击图片(广告)吗?

你能帮我提供所需的代码吗?

提前谢谢

1 个答案:

答案 0 :(得分:0)

如果你看到有没有背景可点击图片,有一个位置固定的“透明图像”:

enter image description here

尝试放入层叠样式表(CSS):

body {
background-image: url("http://banners.dol.gr/opap_skin_kathigitis_tovima.jpg");
background-repeat: no-repeat;
background-position: center 40PX;
background-attachment: fixed;
background-color: #000000 !important;
}
.background {position:absolute;top:0;left:0;z-index:999;visibility:hidden;overflow:hidden;width:100%;height:880px;}
.background .first-banner {position:fixed;left:50%;visibility:visible;margin-left:-800px;}

然后在你的HTML代码中:

<div class="background">
  <div class="first-banner">
    <a target="_blank" href="http://www.google.com">
      <img width="300" height="880" src="http://static.adman.gr/void.gif" border="0">
    </a>
  </div>
</div>

希望它有所帮助! :)