在Drupal页面中选择性删除样式表 [英] Remove stylesheet selectively in Drupal for page

查看:108
本文介绍了在Drupal页面中选择性删除样式表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在为首页做出不同的布局。在这个过程中,我宣布了新的样式表,名为front-page.css和page - front.tpl.php。我正在使用加载respond-sidebar.css的Zen子主题。我想删除respond-sidebar.css并加载front-page.css。
原因我在做,因为后面的样式表中的研磨列的数量与前者不同。



我不想使用面板模块。我正在使用Drupal 7。

解决方案

Drupal 7的方式是使用 hook_css_alter()

 函数MYMODULE_css_alter(& $ css){
//删除defaults.css文件。这个路径可能会显着改变你的主题。
unset($ css [drupal_get_path('theme','MYTHEME')''/css/responsive-sidebar.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.

I don't want to use Panels module. I am using Drupal 7.

解决方案

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页面中选择性删除样式表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆