Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS footer not responsive, why? Reply To: footer not responsive, why?

#241458
Paulie_D
Member

Aha…I think it’s this:

#section-home {
    padding-right: 10px;
    height: 0px;  /* this */
}

I’m not sure why this has height:0, presumably you were trying to hide it…but the contents are spilling out.

You need to either add overflow:hidden…or use a different hiding method…probably display:none.