AbanteCart Community

eCommerce construction => General Discussion => Topic started by: blueglass22 on August 24, 2023, 05:32:26 AM

Title: How Can I remove the space below the footer with BootStrap Theme?
Post by: blueglass22 on August 24, 2023, 05:32:26 AM
I have installed AbanteCart with the BootStrap Theme. I have realized that there is a space below the footer block. The footer Block doesn't fill the entire footer. How do I remove this space?
Title: Re: How Can I remove the space below the footer with BootStrap Theme?
Post by: Basara on August 25, 2023, 04:26:50 AM
Hello.

Try add this to your theme css file
Code: [Select]
div#footer {
    margin-bottom: -50px;
}
Title: Re: How Can I remove the space below the footer with BootStrap Theme?
Post by: Burlesque on October 23, 2023, 02:39:55 PM
 I had a similar issue. Check your CSS and see if there's a margin or padding set for the footer or the element above it. Adjusting that should help remove the space below the footer.
Title: Re: How Can I remove the space below the footer with BootStrap Theme?
Post by: sirisharabas on January 02, 2024, 03:20:09 AM
Yes, I got the exact same error and I had to check very carefully.
Title: Re: How Can I remove the space below the footer with BootStrap Theme?
Post by: luciledalton on February 08, 2024, 11:40:16 AM
To put this element at the bottom of the page, add fixed-bottom to the class footer.
Title: Re: How Can I remove the space below the footer with BootStrap Theme?
Post by: Burlesque on March 06, 2024, 03:42:06 AM
Hello.

Try add this to your theme css file


This kinda helped me, I just needed to make it 0 instead of -50

.footer {
    margin-bottom: 0; /* or padding-bottom: 0; */
}