Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #393762

    http://borstch.eu/aptare3/

    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.pnghttp://borstch.eu/stuff/bild2.png

    • This topic was modified 9 years, 9 months ago by crewneck.
    #394119

    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

    #394472

    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?

    #394612

    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

    #394620

    Fantastic. Worked right away.

    Cheers!

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Remove white space under footer on mobile devices?’ is closed to new replies.