未应用子主题CSS

时间:2017-01-29 21:33:26

标签: css wordpress css3 wordpress-theming child-theming

我有一个二十世纪的儿童主题我正在使用。已经检查过CSS级别3是否有效,没有错误。

/* Minimum width of 600 pixels. */
@media screen and (min-width: 600px) {
.site {
    margin: 0 auto;
    max-width: 960px;
    max-width: 68.571428571rem;
    overflow: hidden;
}

在我正在积极使用的子主题中,即使原始导入,我也放置了以下内容

/* Minimum width of 600 pixels. */
@media screen and (min-width: 600px) {
/*BEGIN MY RESET*/

/*Site background overall*/
.site {
max-width: 100% !important;
background-color: #fff;
}

然而,只有前者似乎生效,后者似乎不适用于我正在使用的儿童主题。

有人请指教吗?

我的孩子主题css:view-source:http://stanleyss.com/wp-content/themes/twentytwelvechild/style.css

我的父母主题css:http://stanleyss.com/wp-content/themes/twentytwelve/style.css

1 个答案:

答案 0 :(得分:0)

我认为你搞乱了儿童风格表包含,检查你使用的功能包括你的functions.php文件中的子样式表。 如果你使用

gproc:reg({p,g,Name})

然后用

更改此代码
wp_enqueue_style( 'your-style-handler', get_template_directory_uri() . '/style.css' );

get_template_directory_uri()用于父主题文件包含,get_stylesheet_directory_uri()用于包含子主题文件。