我需要使用
drupal_add_css将样式表调用到单个Drupal 6页面上.我不想编辑主题样式表,因为会有一组单独的页面都需要全新的样式 – 如果我把它全部放在那里,主表将是巨大的.
<?PHP drupal_add_css("/styles/file1.css","theme"); ?> <div id="newPageContent">stuff here in html</div>
但是当我查看源代码时,那里什么都没有!甚至没有破坏的CSS链接或任何东西,它只是拒绝将CSS表添加到放入页眉的CSS包中.
变化似乎也不起作用:
drupal_add_css($path = '/styles/file1.css',$type = 'module',$media = 'all',$preprocess = TRUE)
我的模板标题看起来像这样,除了添加自定义JavaScript之外,我没有更改默认设置.
<head> <?PHP print $head ?> <title><?PHP print $head_title ?></title> <?PHP print $styles ?> <?PHP print $scripts ?> <script type="text/javascript" src="<?PHP print base_path() ?>misc/askme.js"></script> <!--[if lt IE 7]> <?PHP print PHPtemplate_get_ie_styles(); ?> <![endif]--> </head>
为什么这个功能不起作用?
您在选择示例中的模板的位置并不十分清楚.如果您从模块中选择它,那么您可以在模块中使用drupal_add_css而不是模板.
原文链接:https://www.f2er.com/php/135998.html如果您有自己的主题,可以使用template_preprocess_page并在其中放置逻辑以添加相关的CSS(您也可以使用它来选择要使用的模板).