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 CSS Layout Basics CSS Layout Project Creating and Styling the Layout Containers

Having trouble separating float elements properly in footer for mobile-view?

.

1 Answer

Jamie Reardon
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Jamie Reardon
Treehouse Project Reviewer

Hi

Without looking at your css, a quick glance of your html shows that you have a ul within a ul element. This sounds like the issue for your floats to me. Instead a better approach if you want to have another list inside a list, you need to have it within a li like so:

<ul>
  <li></li>
  <li>
    <ul>
      <li></li>
    </ul>
  <li></li>
</ul>

Your elements are probably appearing "too close" because they are not properly separated by their content. Meaning, they are all nested inside one ul. Separate your student name link from the footer nav and float them left and right.

you should not have any floated elements in the mobile view. you start with the static mobile view, then use floats in the larger media queries.