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
...
どうすればこれを解決できますか?