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

Popular posts from this blog

linux - Does gcc have any options to add version info in ELF binary file? -

android - send complex objects as post php java -

charts - What graph/dashboard product is facebook using in Dashboard: PUE & WUE -