Hi, I would like to change the color and make it translucent of the container, my site is https://cheesecakebased.com/,
Thank you!
A user seeks to make a container background translucent on their Shopify store.
Solutions Provided:
base.css targeting .banner__box with rgba(255, 255, 255, 0.18) for transparency, plus border-radius and backdrop-filter propertiestheme.liquid before the </body> tagFollow-up Issues:
Status: The desktop implementation succeeded, but mobile responsiveness remains unresolved. The discussion is ongoing with unanswered questions about mobile compatibility and opacity customization.
Hi, I would like to change the color and make it translucent of the container, my site is https://cheesecakebased.com/,
Thank you!
@SupGold96 add below css into base.css file
.banner__box {
max-width: 90rem;
background-color: rgba(255, 255, 255, 0.18) !important;
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(0px);
-webkit-backdrop-filter: blur(0px);
border: 1px solid rgba(255, 255, 255, 0.2);
}
Hi @SupGold96 ,
This is Henry at PageFly - Shopify Advanced Page Builder app.
You can try this code by following these steps:
Go to Online store => themes => actions => edit code and add this code on file theme.liquid before tag
Hope this answer helps.
Best regards,
Henry | PageFly
thank you so much for the detail answer!
thank you so much for the answer!
Hi, is it possible for mobile to be the same too? because its only showing on website.
Yes this code will work on device-wide
Hi, it is not showing up on my mobile website.. how can i make it same as the website?
Thank you so much for this, is there a way to change the opacity to make it slightly more opaque?