Remove stylesheet selectively in Drupal for page(在 Drupal 中为页面选择性地删除样式表)
问题描述
我正在尝试为首页制作不同的布局.在那个过程中,我声明了名为front-page.css"和 page--front.tpl.php 的新样式表.我正在使用 Zen 子主题,它加载了 response-sidebar.css.我想删除responsive-sidebar.css"并加载front-page.css".我这样做的原因是因为后面的样式表中的研磨列数与前者不同.
I am trying to make different layout for the front page. In that process I declared new stylesheet called "front-page.css" and page--front.tpl.php. I am using a Zen subtheme which loads responsive-sidebar.css. I want to remove "responsive-sidebar.css" and load "front-page.css". The reason I am doing it because the number of grind columns in the later stylesheet is different that former.
我不想使用面板模块.我正在使用 Drupal 7.
I don't want to use Panels module. I am using Drupal 7.
推荐答案
Drupal 7 的方式是使用 hook_css_alter()
:
The Drupal 7 way is to use hook_css_alter()
:
function MYMODULE_css_alter(&$css) {
// Remove defaults.css file. The path will probably change for your theme obviously.
unset($css[drupal_get_path('theme', 'MYTHEME') . '/css/responsive-sidebar.css']);
}
该钩子可以在模块或主题中实现.
That hook can be implemented in either a module or a theme.
这篇关于在 Drupal 中为页面选择性地删除样式表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Drupal 中为页面选择性地删除样式表


基础教程推荐
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 使用 PDO 转义列名 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01