Logius
July 15, 2022, 4:34pm
1
Hello,
I would like to add a video banner with text and headline and I am following this instruction I found here: https://alanryan.dev/tips/video-background-dawn-theme/
However,
How can I erase the big white translucent overlay?
How can I change the color of the font, button font, and button background?
How can I change the font size of the headline text?
Thank you!
*Dear Shopify Experts:
Please do not use this post to advertise your coding service.
Hi @Logius ,
Are you able to provide your website so we can take a look. Thank you
1 Like
Logius
July 20, 2022, 11:53pm
3
@made4Uo
Hello,
Thank you so much for replying. Here is the page with the video banner section.
https://kitchenequipped.com/pages/test
I am really looking forward to hearing from you.
Thank you!
1 Like
Hi @Logius ,
Please refer to answers below
From your Admin Page, click Online Store > Themes >Actions > Edit code
In the Asset folder, open the bas e.css
Paste the codes below at the very bottom of the file.
How can I erase the big white translucent overlay?
div.hero > div {
background: transparent;
backdrop-filter: unset;
}
How can I change the color of the font, button font, and button background?
.hero a.button {
background: #fff;
color: #000;
}
How can I change the color of the font and font size of the headline text?
div.hero h1 {
color: #fff;
font-size: 50px;
}
1 Like
Logius
July 21, 2022, 12:31am
5
@made4Uo It works! Thank you but I am wondering if it would be possible to set the font size for mobile and desktop separately.
1 Like
@Logius ,
Yes, you can use the following codes instead
For desktop:
@media only screen and (min-width: 751px) {
div.hero h1 {
color: #fff;
font-size: 50px;
}
}
For mobile:
@media only screen and (max-width: 750px) {
div.hero h1 {
color: #fff;
font-size: 20px;
}
}
1 Like
I used the original code in this post and it worked, however any video I upload has a small white square in the middle of the video…any ideas how to get rid of it?
DIG
January 24, 2023, 5:34am
8
Hi, how to change the color of button outline, and add text (below headline text)?
Thank you
Hi
Is there any way to make the video smaller on mobile? Thank you!
how to show video banner at only home page only ,
how can I do it .
Please reply me soon.