How to make footer images fill the entire section height?

How can I get the images I set for the footer to take up the entire height of the section instead of leaving blank padding?

Hi @PoW8

Please share your website url and password of the front if it’s password protected.

Thanks

Sheesh B

password: teunta

HI @PoW8

Kindly go to edit code and under assets, you’ll find ‘section-footer.css
Add below CSS at the bottom.

.footer-block__image-wrapper {
	max-width: min(100%, 100%) !important;
}

Thanks

Sheesh B

Unfortunately not. It makes the image larger but still doesn’t have it fit the full height of the section.

Hi @PoW8

You can try the below css as the margin added there.

.footer__blocks-wrapper.grid, .footer-block__image-wrapper {
	margin-bottom: 0;
	max-width: min(100%, 100%);
}

Thanks

Sheesh B