Home Forums WoodMart support forum Connect footer to bottom page

Connect footer to bottom page

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #631621

    oleh.lila
    Participant

    How to connect footer to bottom page? When there is small amount of content on the page and I open page on device with high resolution (2k,4k) I have this issue. How to fix this?
    Thank you!

    Attachments:
    You must be logged in to view attached files.
    #631725

    Artem Temos
    Keymaster
    Xtemos team

    Hello,

    There is no ideal solution for this and it can be fixed with custom CSS for specific pages only. If you want to do this for the account page, use the following CSS

    .woocommerce-account .wd-page-wrapper {
        display: flex;
        flex-direction: column;
        height: 100vh;
    }
    
    .woocommerce-account .wd-page-content {
        flex-grow: 1;    
    }

    Kind Regards

    #631925

    oleh.lila
    Participant

    Thank you, this helps!
    How to fix this on this pages:
    1. wishlist/
    2. cart-page/

    #631934

    Artem Temos
    Keymaster
    Xtemos team

    You can replace that code with the following one

    :is(.woocommerce-cart,.woocommerce-account,.page-id-843) .wd-page-wrapper {
        display: flex;
        flex-direction: column;
        height: 100vh;
    }
    
    :is(.woocommerce-cart,.woocommerce-account,.page-id-843) .wd-page-content {
        flex-grow: 1;    
    }

    Kind Regards

    #631952

    oleh.lila
    Participant

    Thank you!
    Unfortunately the wishlist page still have this issue. 

    #632080

    Artem Temos
    Keymaster
    Xtemos team

    As we can see, it is displayed correctly at the moment https://monosnap.com/file/Ewzp8Ae3ddFIypDD8ldsN3IzlkZnfu

Viewing 6 posts - 1 through 6 (of 6 total)