template.php删除css和body样式

时间:2015-03-12 06:39:45

标签: php drupal-7

您好我如何删除正在添加的body体模型.php

我正在使用ZEN模板并将其拆开。如果你知道如何摆脱以下。

<style>
@import url("http://localhost/~russellharrower/netcast/modules/system/system.base.css?nl30xl");
@import url("http://localhost/~russellharrower/netcast/modules/system/system.messages.css?nl30xl");
@import url("http://localhost/~russellharrower/netcast/modules/system/system.theme.css?nl30xl");
</style>

<body class>

1 个答案:

答案 0 :(得分:1)

在template.php中尝试此操作,但实际上您需要创建ZEN的子主题并覆盖CSS值。     函数THEMENAME_css_alter(&amp; $ css){         未设置($ CSS [drupal_get_path(&#39;模块&#39;&#39;系统&#39;)&#39; /system.theme.css']);         未设置($ CSS [drupal_get_path(&#39;模块&#39;&#39;系统&#39;)&#39; /system.base.css']);         未设置($ CSS [drupal_get_path(&#39;模块&#39;&#39;系统&#39;)&#39; /system.messages.css']);     }