How can I fix the floating footer issue in my Brooklyn theme?

anyone knows how to fixed the footer at the very bottom of every pages, because when there isn’t much content, the footer seems like floating, i want to fixed it at the bottom of the page. for example my login page etc. theme is brooklyn.

thanks

Hello Vanessaliew!

I added a some styling below which should help you position the footer at the bottom of the page. but if you change the of the style selector it should work.

element.style {
position: fixed;
bottom: 0;
left: 0;
z-index: 9999;
}

I hope this feedback helps you,

Thanks

Solutions1