Home › Forums › CSS › footer not responsive, why? › Reply To: footer not responsive, why?
May 10, 2016 at 1:23 pm
#241458
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
.