简单的 Drupal 子主题...我做错了什么...?
我正在尝试使用 Drupal 建立一个非常基本的子主题。我一直相信子主题将继承基本主题的设置,并且两个主题看起来几乎相同。
以下是我正在采取的步骤...
- 在“/sites/all/themes/sub_theme_name”处创建一个新文件夹。
- 在此文件夹中创建信息文件“sub_theme_name.info”。以下是内容...
$Id$
名称 = 子主题名称
描述 = 这是一个演示子主题。
版本 = 1.0
核心 = 6.x
基本主题=花环
- 浏览到主题管理页面。启用我的子主题并将其设置为默认值。
- 浏览我的首页...这是我希望所有内容看起来与基本主题“花环”相同或几乎相同的地方。问题是没有继承 CSS 文件。
有什么想法吗?
I'm trying to set up a very basic subtheme with Drupal. I've been led to believe that the subtheme will inherit the settings of the base theme and the two themes will look almost identical.
Here are the steps I am taking...
- Creating a new folder at '/sites/all/themes/sub_theme_name'.
- Creating the info file 'sub_theme_name.info' in this folder. Here are the contents...
$Id$
name = sub_theme_name
description = This is a demo sub theme.
version = 1.0
core = 6.x
base theme = garland
- Browse to the Themes Admin page. Enable my subtheme and set it to the default.
- Browse to my front page...this is where I expect everything to look identical or almost identical to the base theme 'garland'. The problem is that no CSS files are being inherited.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
文档中有一个小问题。
因此,如果您定义了样式表,即使它是空的,它也应该可以工作。
There is a little gotcha in the docs.
So if you define a stylesheet, even if it is empty it should work.
我认为你应该从 project zen 开始。
I reckon that you should start with project zen.