【发布时间】:2013-05-13 23:48:25
【问题描述】:
我的风景:我安装了带有 Omega 主题的 Drupal 7。
我的问题:我必须为我的 CSS(部分标题)的特定区域设置随机背景。 由于响应式设计,我有 4 个单独的 css 文件,文件名相同,但唯一的区别是 _mobile _narrow _normal _wide 后缀。 我用一些简单的线条在 css 文件中设置了背景:
#section-header {
background: url(../images/sf_header_wide.jpg) no-repeat top center;
height: 390px;
margin: 0;
padding: 0;
}
我需要为背景添加多个图像,我想知道是否可以从外部源(例如我的模板 php 文件)导入文件名并获得类似的内容而不添加template.php 文件的背景行,因为我已经为响应式设计分离了 css 文件
#section-header {
background: url("../images/<?php echo $fileimage; ?>_wide") no-repeat;
height: 390px;
margin: 0;
padding: 0;
}
有没有可能得到我需要的东西?
【问题讨论】:
标签: php css variables header drupal-7