admin管理员组文章数量:1130349
I am having trouble figuring out how to change styles for the WP Bootstrap Starter theme. I've created a functions file with the following:
<?php
function my_theme_enqueue_styles() {
$parent_style = 'parent-style'; // This is 'twentyfifteen-style' for the Twenty Fifteen theme.
wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'child-style',
get_stylesheet_directory_uri() . '/style.css',
array( $parent_style ),
wp_get_theme()->get('Version')
);
}
add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
?>
I can change some parts of the theme css like blog post title font size. But I cannot change the sub header font size where it says "Wordpress + Bootstrap". I've tried:
#page-sub-header {
font-size: 1rem;
}
That should have done it, but it doesn't do anything. Driving me crazy.
Anyone have any ideas?
Here's the example site: /
I am having trouble figuring out how to change styles for the WP Bootstrap Starter theme. I've created a functions file with the following:
<?php
function my_theme_enqueue_styles() {
$parent_style = 'parent-style'; // This is 'twentyfifteen-style' for the Twenty Fifteen theme.
wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'child-style',
get_stylesheet_directory_uri() . '/style.css',
array( $parent_style ),
wp_get_theme()->get('Version')
);
}
add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
?>
I can change some parts of the theme css like blog post title font size. But I cannot change the sub header font size where it says "Wordpress + Bootstrap". I've tried:
#page-sub-header {
font-size: 1rem;
}
That should have done it, but it doesn't do anything. Driving me crazy.
Anyone have any ideas?
Here's the example site: /
本文标签: Change WP Child theme CSS for WP Bootstrap Starter Theme
版权声明:本文标题:Change WP Child theme CSS for WP Bootstrap Starter Theme 内容由热心网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:https://it.en369.cn/questions/1749027294a2305305.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。


发表评论