Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS

Malachai Frazier
Malachai Frazier
7,352 Points

Huge 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

Just 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
Malachai Frazier
7,352 Points

Hey thanks! I'll start goofing with it

Anytime!

Jody Albritton
PLUS
Jody Albritton
Courses Plus Student 5,497 Points

My 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.