我使用禪宗作爲基本主題來爲我的網站製作一個新的主題。問題是我想爲頁眉和頁腳的背景圖像,直到我指定他們的高度和寬度,直到我沒有得到顯示。此外,在#header和#footer CSS中指定的高度和寬度必須匹配的確切尺寸原始圖像(尺寸較大),否則圖像不能正確顯示(部分被剪切)。有沒有一種解決方案(使用CSS或PHP),可以讓我爲頁眉和頁腳編寫CSS,而不需要任何尺寸限制,以便背景圖像可以自行調整?頁眉和頁腳不包含塊。在CSS的部分如下: -Drupal Theming - 沒有尺寸約束的背景圖片
#header
{
background-image:url(images/header.jpg);
background-repeat:no-repeat;
height:
background-position:center;
}
#footer
{
margin-top:0px;
background-image:url(images/footer.jpg);
height:391px;
background-position:center;
}
#footer-inner
{
text-align:center;
padding:4px 10px 10px 10px;
}