Hello! Love this community and all the solutions you give. Could some one please help me remove the remaining block of background color on my PASSWORD PAGE? I am using Dawn latest version I have inserted a background video & made header transparent & footer hidden but there is still a white or black (I can change color depending on background color) on the bottom. How can I remove this or make it transparent to see the complete video.
Please see here:
https://zhadere.com/password
1 Like
Hey @renatavilland ,
You can use this CSS code.
Apply it in the base.css, theme.css or styles.css in the Assets folder after clicking Edit Code on your theme options.
.videoBackground .fullscreen-video-wrap {
max-height: 100vh;
height: 100vh;
}
.modal__content {
background-color: transparent;
color: white;
}
button.password-button.button.button--outline {
color: white;
}
Hello @renatavilland
You can add code by following these steps
-
Go to Online Store → Theme → Edit code.
-
Open your theme.liquid file
-
Paste the below code before on theme.liquid
.videoBackground .videoBox {
min-height: unset !important;
max-height: unset !important;
height: 100% !important;
}
@media screen and(max-width: 767px){
.videoBackground .videoBoxInfo {
padding:unset !important;
}
}
Hi @renatavilland
Check this one.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media screen and (max-width: 767px){
.videoBackground .videoBoxInfo {
padding: 0px !important;
}
}
.videoBackground .videoBox {
min-height: 100% !important;
max-height: 100% !important;
height: 100% !important;
}
And Save.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Hello this worked! Thank you so much. Definitely checking out Made4uo.com