html - How to format background color using twitter bootstrap? -
i playing styles on website here: http://www.grabapper.com
i trying include background-color #2ba6cb on hero unit. when include:
<div class="row" style ='background-color: #2ba6cb;'> the color doesn't go way edge of page. how background color go edge of page?
move row before <div class="container marketing"> , wrap new container, because current container width 1170px (not 100%):
<div class='hero'> <div class="row"> ... </div> </div> css:
.hero { background-color: #2ba6cb; padding: 0 90px; }
Comments
Post a Comment