Home Forums WoodMart support forum where there is not much content on the page, such as on the personal account pag

where there is not much content on the page, such as on the personal account pag

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #637003

    ElBender8
    Participant

    where there is not much content on the page, such as on the personal account page, there is empty white space under the footer.

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

    Hello,

    Sorry to hear about the inconvenience. Kindly, please share your Site WP-ADMIN Login details in the Private Content field so that we can check this concern on your Site and help you out accordingly.

    Best Regards,

    #637188

    ElBender8
    Participant

    pls check private

    #637221

    Hello,

    Please add the below Custom CSS code to Theme Settings > Custom CSS > Global Custom CSS:

    .wd-footer .wd-copyrights {
        padding-bottom: 50px;
    }  

    Best Regards,

    #637244

    ElBender8
    Participant

    I added it, but nothing changed

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

    Hello,

    You can use the following CSS with a media query to adjust the padding based on different screen sizes where have you faced the issue:

    @media (max-width: 1024px) { 
    .wd-footer .wd-copyrights { 
    padding-bottom: 200px; 
    }
     }

    Please adjust the values as needed based on the screen size where you are experiencing the issue.

    Best Regards,

    #637622

    ElBender8
    Participant

    is there any way to just have the site footer always linked to the bottom on all devices? it was always like that before within the theme without any additional code. please go to the admin panel (there are accesses) and take a look, you will see the problem. the code above does not help.

    #637623

    ElBender8
    Participant

    I want it like on your site, where on any screen the footer is at the bottom without any spaces

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

    Hello,

    Please remove the previous code and add the following one. 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;    
    }

    Best Regards,

    #637880

    ElBender8
    Participant

    first of all, thank you for answering so fast. secondly, i think woodmart is the best product for wordpress. i have known you since 2019 and i respect your work. you are amazing. i would like to have a footer everywhere on any resolution always at the bottom regardless of the resolution as it is done in the original theme that i am customizing (mega electronics)

    #638024

    Hello,

    Thank you for your kind words! We truly appreciate your trust in Woodmart.

    Regarding the footer issue, it looks like the footer has been disabled from Theme Settings > Footer, while the Copyright section is still enabled.

    To restore the footer across all resolutions and ensure it stays at the bottom of the page, please navigate to:
    Woodmart > Theme Settings > Footer > Enable the footer section.

    If you want the footer to always stick to the bottom of the viewport, regardless of content height, you can also try adding the previous css code:

    Best Regards,

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