Search code examples
htmlcsswordpressclearfix

Clearfix does not work on all pages


On my site http://jonasolaussen.se/?page_id=16 as you see the text goes under the footer, I does get better if I ad <div style="cleare:none;"> </div> as it does on the other sites.

Does someone have an solution, i would be grateful!


Solution

  • There are two main issues:

    1) There is an extra </div><!--wrapper--> that needs to be removed.
    2) The div .footer_fix_pusher needs to be cleared (I have used your clear fix method below)

    <div style="clear:both"></div> <!--You need to add this-->
    </div><!--footer_fix_pusher-->
    </div><!--wrapper--> <!--You need to delete this closing tag-->