[Support request] White bar at bottom of page

Home Forums Support [Support request] White bar at bottom of page

Home Forums Support White bar at bottom of page

Viewing 11 posts - 16 through 26 (of 26 total)
  • Author
    Posts
  • #985415
    Peter

    I had tried to find the <p> tag and remove it already, but I could not find it in the code/content of the footer test page. I removed it in DevTools by editing the HTML there, but that did not remove the white bar.

    I managed to get rid of the <p> tag now by putting the image in a

    , but the white bottom bar is still there.
    #985416
    Peter

    Oops, the last sentence should be:

    I managed to get rid of the <p> tag now by putting the image in a <div>, but the white bottom bar is still there.

    #985636
    David
    Staff
    Customer Support

    Hi there,

    the space is appearing because of the vertical alignment of the image. So if you wrap your image in a DIV with a class eg.

    <div class="footer-image">
    <!-- your image tag in here -->
    <div>

    Then this CSS to align the image to the bottom:

    .footer-image img {
        vertical-align: bottom;
    }
    #985642
    Peter

    Thank you David,

    I tried it now but it still does not work. Can you come up with another solution?

    #985646
    David
    Staff
    Customer Support

    I can’t see the HTML changes or CSS on this page:
    https://vt.bullitgbg.se/footer-wp-only/

    If you add the HTML as suggested with the CSS provided it should work.

    #985656
    Peter

    Hi David,

    That’s strange. Have you tried to clear your cache? I can see that the changes are added.

    Screenshot

    #985662
    David
    Staff
    Customer Support

    I can’t see the CSS? Where have you added that?

    #985667
    Peter

    It is in the right column in DevTools:

    .footer-image {
        vertical-align: bottom;
    }

    I added it in Appearance\Customize\Additional CSS. Or have I misunderstood something?

    #985671
    David
    Staff
    Customer Support

    That CSS is incorrect – check above

    #987646
    Peter

    Thank you for your sharp eye, David. I added the “img” as well, and then it worked! That was just a test page without Beaver Builder though, because Leo wanted to troubleshoot without Beaver Builder activated. When I reactivated Beaver Builder now and tried to recreate the footer, the white bottom bar actually got bigger … But by some crazy logic I changed the “vertical-align: bottom;” to “vertical-align: top;” for the footer image instead, and that worked. I don’t know why.

    #987763
    David
    Staff
    Customer Support

    That is odd. Glad you got it resolved.

Viewing 11 posts - 16 through 26 (of 26 total)
  • You must be logged in to reply to this topic.