我目前正在使用Customizr主题,页面的默认设置设置为“full width / no sidebars”。
然而,当我尝试在页面中做这样的事情时:
<div id="blue-background">
<h1 style="text-align: center;">Full width text with background color ? >/h1>
</div>
使用相应的CSS代码:
#blue-background{
width: 100%;
float: left;
padding: 20px;
background: #2680BE;
position: relative;
}
我的文字周围仍有白边。增加宽度似乎不是一个好的解决方案,所以我该怎么办?
这是我用这段代码得到的一个例子: http://www.cirnu.com/bandeau/
答案 0 :(得分:1)
你的主包装应该是这样的
<div id="main-wrapper">
<div class="tc-hot-crumble container" role="navigation"><div class="row"><div class="span12"><div class="breadcrumb-trail breadcrumbs" itemprop="breadcrumb"><span class="trail-begin"><a href="http://www.cirnu.com" title="Cirnu" rel="home" class="trail-begin">Accueil</a></span> <span class="sep">»</span> <span class="trail-end">Bandeau</span></div></div></div></div>
<div role="main">
<div class="row column-content-wrapper">
<div id="content" class="span12 article-container">
<article id="page-623" class="post-623 page type-page status-publish hentry row-fluid">
<header class="entry-header">
<h1 class="entry-title format-icon">Bandeau</h1>
<hr class="featurette-divider __before_content">
</header>
<div class="entry-content">
<div role="main">
<div id="blue-background">
<div class="container">
<h1 style="text-align: center;">Full width text with background color ?</h1>
</div>
</div>
</div>
</div>
</article>
</div><!--.article-container -->
</div><!--.row -->
</div><!-- .container role: main -->
</div>
然后您需要更改一些CSS规则:
#blue-background {
padding:20px 0;
/* then all the other rules you already have */
}
.article-container {
width:100%;
}