我正在使用 Bootstrap,但在使用“无包装主题”的roots.io wordpress 模板下
我正在尝试实现这个http://roots.io/ - 其中有颜色部分,但页面内容本身不是全宽的。
我得到的答案是让容器类 100% - 但这只会使所有内容全宽。
我真的被困住了,我一直试图解决这个问题好几个小时。- 我知道这听起来很愚蠢,但我无法超越这一点。
所有页面模板都采用 base.php 的样式,代码在这里
<?php get_template_part('templates/head'); ?>
<body <?php body_class(); ?>>
<!--[if lt IE 8]><div class="alert alert-warning"><?php _e('You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.', 'roots'); ?></div><![endif]-->
<?php
do_action('get_header');
// Use Bootstrap's navbar if enabled in config.php
if (current_theme_supports('bootstrap-top-navbar')) {
get_template_part('templates/header-top-navbar');
} else {
get_template_part('templates/header');
}
?>
<div class="wrap container" role="document">
<div class="content row">
<div class="main <?php echo roots_main_class(); ?>" role="main">
<?php include roots_template_path(); ?>
</div><!-- /.main -->
<?php if (roots_display_sidebar()) : ?>
<aside class="sidebar <?php echo roots_sidebar_class(); ?>" role="complementary">
<?php include roots_sidebar_path(); ?>
</aside><!-- /.sidebar -->
<?php endif; ?>
</div><!-- /.content -->
</div><!-- /.wrap -->
<?php get_template_part('templates/footer'); ?>
</body>
</html>
所以我只是不确定如何在任何页面模板中通过它