Reputation: 11784
So I'm using Bootstrap to code up a page with a footer. Here is the HTML for the footer:
<div class="row">
<div class="footer1 span12">
<span class="offset2">© 2013 Me</span>
</div>
</div>
Here is its CSS:
.footer1{
margin-top:520px;
background-color:#EFEFEF;
font-size:.5em;
padding-top:25px;
padding-bottom:25px;
border-top:1px solid black;
border-bottom:1px solid black;
}
Yet for some reason the footer is not spanning the entire width of the page. I have a 12 column nav bar that extends far beyond the width of the footer. The footer looks like it only spans 8 or 10 columns. Any idea what's going on here?
Upvotes: 0
Views: 739
Reputation: 3649
Use row-fluid
like following and dont put it inside the container
div or it wont span full-width.
<div class="container">
dont put footer inside it
</div>
<div class="row-fluid">
<div class="footer1 span12">
<span class="offset2">© 2013 Me</span>
</div>
</div>
Upvotes: 1