Strange problem with footer

0

I'm developing this site:

link

And I'm encountering problems with footer placement. I'm using twitter bootstrap (grid only) and SASS as tools.

If you open the site, you will see that the footer is positioned above the article container, and its elements are in the correct place (below it). I even put the edges of the black footer so they can see the problem.

If you inspect the header, footer, and section elements, you can see that the inspector line boundaries only go to the beginning of the article container. It's very strange, after all, I've nested the html perfectly within the aforementioned tags. What could be happening?

    
asked by anonymous 08.06.2014 / 22:40

1 answer

1

Add a <div style="clear: both;"></div> at the end of <div class="row content-index"> .

This will "clean" the floats of the article's divs.

If you want to know more about it, here's an article: link .

Another thing, not related to the question: gives a review in the source of the site; in some places it is barely legible.

    
08.06.2014 / 23:14