Hi!
I would like to make my password page footer transparent so my image would cover the entire page. The header is already transparent and fixed but can’t figure a way to make the footer transparent.
Thanks in advance!
Hi!
I would like to make my password page footer transparent so my image would cover the entire page. The header is already transparent and fixed but can’t figure a way to make the footer transparent.
Thanks in advance!
Hi @tae0207 ,
This is David at SalesHunterThemes.
I read your problem and it seems that. Would you please share your website URL.
if your website is password protected then also provide the password.
David | SalesHunterThemes team.
Hi @tae0207 ,
This is David at SalesHunterThemes.
Thank you for your question.
You can try to follow these steps:
Go to Online Store → Themes → Actions → Edit code.
Go Assets folder → base.css file.
Add this following code at the bottom of page.
.shopify-section-main-password-footer .password__footer {
position: fixed;
bottom: 0;
right: 0;
left: 0;
background: transparent;
}
.shopify-section-main-password-footer .password__footer .list-social{
background: white;
}
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Hope this can help.
David | SalesHunterThemes team
Hi @tae0207
This is David at SalesHunterThemes.
You can try to follow these steps:
Go to Online Store → Themes → Actions → Edit code.
Go Assets folder → base.css file.
Add this following code at the bottom of page.
.password . password__footer {
--color-foreground: 255,255,255;
position: absolute;
bottom: 0;
width: 100%;
background: transparent;
z-index: 99999;
}
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Hope this can help.
David | SalesHunterThemes team
These codes don’t work unfortunately
Hi @tae0207 ,
The code I gave you has an extra space. Sorry it didn’t work.
You can try again:
.password .password__footer {
--color-foreground: 255,255,255;
position: absolute;
bottom: 0;
width: 100%;
background: transparent;
z-index: 99999;
}