Forums

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

Home Forums CSS Extend footer copyright div background past wrapper Reply To: Extend footer copyright div background past wrapper

#248796
deb
Participant

The way you are trying is not good, you have .container which has overflow hidden, so do like this:

.bottom-footer { position: relative; }
.bottom-footer:after {position: absolute;content:”;background: #c00;width: 40%;right: 0;height: 40px;top:0;} /use #fff instead of #c00, i used it to let you know the difference/

/Now add this css in your .bottom-footer .one_half.last and remove background from there and adjust padding accordingly/
.bottom-footer .one_half.last { position: relative; z-index: 999; background:none }

/This will work for sure/