【发布时间】:2012-06-14 16:16:53
【问题描述】:
我正在使用 Drupal 7。page.tpl.php 文件中的我的 bg 图像和图像获取到 css。
我的html:
<div class="mainimage" id="mainimg" class="clearfix"></div>
还有 CSS:
#mainimg {
background: url("../img/mainimg.jpg") repeat scroll 0 0 transparent;
height: 500px;
left: 50%;
margin-left: -640px;
position: absolute;
width: 1280px;
z-index: 1;
top:0;
}
我的背景图片看到了所有页面。这很正常。但我想在每一页上更改我的 bg 图像。 例如
...
mysite.com/index.php -bg image: mainimg.jpg
mysite.com/news -bg image:news.jpg
mysite.com/about -bg image: about.jpg
...
我该如何解决这个问题?
【问题讨论】: