kxvvywxvvy Posted July 3, 2021 Share Posted July 3, 2021 (edited) Hi there, I'm trying to create a footer similar to the one on this page - https://hoodbyair.world I also want the footer text to show over my banner video with a transparent background. I've tried many methods but I can't get it to work. Thanks in advance! Edited July 4, 2021 by kxvvywxvvy Link to comment
NickScola Posted July 3, 2021 Share Posted July 3, 2021 (edited) Hi! You'll need to set the footer to an absolute or fixed position in the Custom CSS section. Try this, FYI this will only apply to the homepage, but if you want it applied everywhere just remove .homepage from it. .homepage #footer-sections { position: absolute; bottom: 0; top: auto; left: 0; width: 100%; z-index: 999; } If you need help let me know nick@nickscola.com Edited July 3, 2021 by NickScola Tiny_Coast and kxvvywxvvy 2 https://www.nickscola.com - Squarespace developer since 2007 now a full service creative agency in Chicago that focuses on creating websites with a high standard for aesthetic excellence. Link to comment
kxvvywxvvy Posted July 3, 2021 Author Share Posted July 3, 2021 17 minutes ago, NickScola said: Hi! You'll need to set the footer to an absolute or fixed position in the Custom CSS section. Try this, FYI this will only apply to the homepage, but if you want it applied everywhere just remove .homepage from it. .homepage #footer-sections { position: absolute; bottom: 0; top: auto; left: 0; width: 100%; } If you need help let me know nick@nickscola.com Hi Nick! Thanks for the fast reply. I tried this but unfortunately it just hides the footer, even if I scroll down, any idea why this is happening? Thanks! Link to comment
NickScola Posted July 3, 2021 Share Posted July 3, 2021 2 minutes ago, kxvvywxvvy said: Hi Nick! Thanks for the fast reply. I tried this but unfortunately it just hides the footer, even if I scroll down, any idea why this is happening? Thanks! Ah thats my bad! I totally forgot to apply a z-index prop / value. I've updated the code. https://www.nickscola.com - Squarespace developer since 2007 now a full service creative agency in Chicago that focuses on creating websites with a high standard for aesthetic excellence. Link to comment
kxvvywxvvy Posted July 3, 2021 Author Share Posted July 3, 2021 28 minutes ago, NickScola said: Ah thats my bad! I totally forgot to apply a z-index prop / value. I've updated the code. I've got it working to some degree. If you check my page now you'll notice the bottom of the page has a random white bar, is there anyway to get rid of that? Thanks so much for your help Link to comment
NickScola Posted July 3, 2021 Share Posted July 3, 2021 12 minutes ago, kxvvywxvvy said: I've got it working to some degree. If you check my page now you'll notice the bottom of the page has a random white bar, is there anyway to get rid of that? Thanks so much for your help Looks like there's 70px of padding being applied. Remove this: main#page { padding-bottom: 0px; } Again, if you want this on the homepage only just add .homepage .homepage main#page { padding-bottom: 0px; } tuanphan 1 https://www.nickscola.com - Squarespace developer since 2007 now a full service creative agency in Chicago that focuses on creating websites with a high standard for aesthetic excellence. Link to comment
kxvvywxvvy Posted July 3, 2021 Author Share Posted July 3, 2021 1 minute ago, NickScola said: Looks like there's 70px of padding being applied. Remove this: main#page { padding-bottom: 0px; } Again, if you want this on the homepage only just add .homepage .homepage main#page { padding-bottom: 0px; } Worked perfectly, you're a genius! Thank you so much! NickScola 1 Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment