我从 WooThemes 创建了 Snapshot 主题的子主题。
但似乎我没有成功设置儿童主题的样式。
这是子主题的 style.css 标头/代码:
/*
Theme Name: My Child Theme
Theme URI: http: //kevingstongramado.p.ht/
Description: This is a custom child theme I have created.
Author: Marcelo Noronha
Template: snapshot
Version: 1.0
*/
@import url("../snasphot/style.css");
div#temp{
color:#00FF00;
}
我在 Chrome 中按了 F12,看看会发生什么。出现的“style.css”文件是来自父主题的“style.css”。我不知道它是否不应该从孩子那里加载“style.css”。
我有一个目录,'snapshot',用于父主题,'snapshot-child',用于子主题。
我已经激活了子主题。
在 Chrome 中使用 F12 似乎无法找到子主题的“style.css”文件。
该网站的 URL 是http://kevingstongramado.p.ht/
应该在页面中设置样式的文本是“Test2”。
编辑:
我在 FireFox 中使用过 FireBug。此外,该网站似乎没有从子主题加载“style.css”。
任何人?