I’ve uploaded a custom background image in the footer and want to get rid of the white space under it on all devices. A want the red area to be “glued” to the bottom of the page. How do I achieve that?
http://borstch.eu/stuff/bild2.png
Hey crewneck!
Please try the following code in Quick CSS:
#footer {
padding: 0 0 0px !important;
}
That will remove the padding. Did you set the image to repeat? It might not be high enough to cover the whole area…
Best regards,
Rikard
Thanks! That removed some of the white space, but not all of it.
I don’t want the footer to be higher than the red area. Will that become a problem?
Hey!
Please add following code to Quick CSS
@media only screen and (max-width: 769px) {
#footer { padding: 0 !important; }
#footer .flex_column { margin-bottom: 0!important; }}
Regards,
Yigit
Fantastic. Worked right away.
Cheers!