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!

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

Diego Marrs
Diego Marrs
8,243 Points

Make content touch footer.

I'm trying to stick my footer at the bottom of the page, which I have already done:

footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 98px;
}

Now I'm trying to get my content to touch the footer:

<div class = "content">
  <div class="page-title">
    <h1><?php the_title(); ?></h1>
  </div>
  <div class = "page-content-left">
    <div class = "page-text">
      <p><?php the_content(); ?></p>
    </div>
  </div>
</div>

How would I go about doing this?

2 Answers

Tianni Myers
Tianni Myers
10,453 Points

What is the bottom, left, right? Is that position or what? I would do margin-bottom and try a negative number.

Ashley Van Laer
Ashley Van Laer
6,662 Points

change position: absolute; to position: relative; and it might work