我正在使用 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 图像看到了所有页面。这很正常。但我想在每一页上更改我的 bg 图像。例如
...
mysite.com/index.php -bg image: mainimg.jpg
mysite.com/news -bg image:news.jpg
mysite.com/about -bg image: about.jpg
...
我该如何解决这个问题?