drupal条件样式表问题!
你好 我正在尝试创建一个新的 drupal 主题,它有许多不同的页面和许多不同的样式页面和许多 css 文件。 该模板适用于具有特定模块的特定网站,当然每个模块都有自己的模板 我正在禅宗下开发我的主题。 在模板 .info 中,我定义了许多 css 文件,我的问题是: 我想要 Drupal 加载特定模块下的每个 .CSS 文件 drupal 有条件样式表仅适用于其他浏览器[如 IE6 IE7 ,...],但没有任何内容可以加载到特定模块中
hi
i'm trying to create a new drupal theme which has many different pages and many diffrent style pages and many css files.
The template is for a specific website with specific modules and ofcourse each module has it own template
i am developing my theme under zen.
in template .info i had defined manay css files and my problem is:
I WANT DRUPAL LOAD EACH .CSS FILE UNDER A SPECIFIC MODULE
drupal has conditional stylesheet just for oher browsers[like IE6 IE7 , ...] but nothing for load in a specific module
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在主题的 template.php 文件中编写自己的规则。
我经常使用这个技巧不是针对不同的模块,而是针对不同的路径。
将其放入 phptemplate_preprocess_page 函数中的 template.php 中,现在如果您有一个地址为 http://example.com/catalog,您可以使用 page-catalog.tpl.php 和 style-catalog.css 。
You can write your own rules in template.php file of your theme.
I'm often use this trick not for different modules, but for different paths.
Put this into template.php in phptemplate_preprocess_page function and now if you have a page with address http://example.com/catalog, you can use page-catalog.tpl.php and style-catalog.css for it.