jrmyprkr Posted June 26, 2023 Posted June 26, 2023 Hi all, Seems like this should be relatively easy fix, but I'm having some difficulty with figuring out how to make it so that the homepage body's (or any page, really) background image extends through the footer background, rendering the footer background transparent, and any text or icons etc. within the footer on the homepage (or again, any page I may decide to do this for in the future) visible. My website is jrmyprkr.earth and my builder version is 7.1 if that helps. Thank you!
tuanphan Posted June 27, 2023 Posted June 27, 2023 Add to Design > Custom CSS /* Footer transparent */ body.homepage { position: relative; } body.homepage footer#footer-sections { position: absolute; bottom: 0; left: 0; z-index: 999; width: 100%; } body.homepage footer.sections section, body.homepage footer.sections .section-background, body.homepage footer.sections .section-border { background: transparent; } jrmyprkr 1 Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
jrmyprkr Posted July 11, 2023 Author Posted July 11, 2023 On 6/27/2023 at 1:03 AM, tuanphan said: Add to Design > Custom CSS /* Footer transparent */ body.homepage { position: relative; } body.homepage footer#footer-sections { position: absolute; bottom: 0; left: 0; z-index: 999; width: 100%; } body.homepage footer.sections section, body.homepage footer.sections .section-background, body.homepage footer.sections .section-border { background: transparent; } Thank you so much! I'm sorry I didn't see this sooner. If I may impose again, it seems like this worked beautifully on the home page, (where there is a background), but on the remaining pages where there is no image background, it leaves the footer with a black bar behind it? (e.g. jrmyprkr.earth/palabras) is there a way to make it so the footer will have the same transparent background? Hope this isn't askin' too much! Thanks again!
tuanphan Posted July 11, 2023 Posted July 11, 2023 4 hours ago, jrmyprkr said: Thank you so much! I'm sorry I didn't see this sooner. If I may impose again, it seems like this worked beautifully on the home page, (where there is a background), but on the remaining pages where there is no image background, it leaves the footer with a black bar behind it? (e.g. jrmyprkr.earth/palabras) is there a way to make it so the footer will have the same transparent background? Hope this isn't askin' too much! Thanks again! Can you share link to a page where you have problem? Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
jrmyprkr Posted July 11, 2023 Author Posted July 11, 2023 5 hours ago, tuanphan said: Can you share link to a page where you have problem? Sure, this one's an example: jrmyprkr.earth/palabras
Solution tuanphan Posted July 14, 2023 Solution Posted July 14, 2023 On 7/11/2023 at 9:40 PM, jrmyprkr said: Sure, this one's an example: jrmyprkr.earth/palabras You can use this new code /* Footer transparent */ body { position: relative; } body footer#footer-sections { position: absolute; bottom: 0; left: 0; z-index: 999; width: 100%; } body footer.sections section, body footer.sections .section-background, body footer.sections .section-border { background: transparent; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
jrmyprkr Posted July 14, 2023 Author Posted July 14, 2023 8 hours ago, tuanphan said: You can use this new code /* Footer transparent */ body { position: relative; } body footer#footer-sections { position: absolute; bottom: 0; left: 0; z-index: 999; width: 100%; } body footer.sections section, body footer.sections .section-background, body footer.sections .section-border { background: transparent; } That worked perfectly, thank you so much! tuanphan 1
sourwidows Posted March 25 Posted March 25 Does this apply to the mobile version of the site? It is working on my desktop view but not on mobile.
tuanphan Posted March 29 Posted March 29 On 3/26/2024 at 4:55 AM, sourwidows said: Does this apply to the mobile version of the site? It is working on my desktop view but not on mobile. What is your site url? We can check easier Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment