Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Malachai Frazier
7,352 PointsHuge Footer w/ Bootstrap
Anyone have any luck implementing a large footer? Like this http://blog.firmhouse.com/
I'm using bootstrap (considering switching to Zurb, perhaps) in a Rails 3 app if that make any difference...
5 Answers

Joseph Cahill
Courses Plus Student 4,739 PointsJust start a new container-fluid
div and then add your custom styling to it.
<div class="container-fluid" id="footer">
<div class="row-fluid">
<div class="span3">
1st Widget
</div>
<div class="span3">
2nd Widget
</div>
<div class="span3">
3rd Widget
</div>
<div class="span3">
4th Widget
</div>
</div>
</div>
Play with the css to get the padding and margins correct.

Malachai Frazier
7,352 PointsHey thanks! I'll start goofing with it

Jody Albritton
Courses Plus Student 5,497 PointsMy site is bootstrap with semi-large footer - http://jodyalbritton.me - It's still early days, I just made the move from wordpress to a custom blog engine I built in rails.

Malachai Frazier
7,352 PointsSeñor, me gusta.