Video Background Button

Solved

Video Background Button

harmoniefeuer
Tourist
6 0 2

I made a video background on my homepage of the store. The problem is that sometimes the video does not load on the phone. Is there a way to fix it? + The button on the video does not show on the phone. AND i want to make the button text bold 🙂

My shopify store link: harmoniefeuer.com

Theme: Dawn

 

Thank you in advance!!

Accepted Solution (1)
Kyle_liu
Shopify Partner
368 47 62

This is an accepted solution.

Hi  @harmoniefeuer 

1、Customize

Kyle_liu_0-1733793153371.png

2、Select the section you want to modify, such as: Image banner

Kyle_liu_1-1733793231603.png

3、Add code in the Custom CSS area

Kyle_liu_2-1733793362514.png

@media screen and (max-width: 767px) {
  .videoBackground .videoBoxInfo {
    padding: 2px 20px;
    width: 100%;
    position: absolute;
    min-height: 185px;
  }
}

 

 

 

If this is helpful, please Like and Accept the solution.
Want to modify or custom changes on store? Let me help.
- Feel free to contact me Email Me Buy Me A Coffee

View solution in original post

Replies 5 (5)

Kyle_liu
Shopify Partner
368 47 62

Hi @harmoniefeuer 

 

Is this the effect you need?

Kyle_liu_0-1733722089965.png

 

1. Edit theme code

Kyle_liu_2-1733722474655.png

2. base.css

Kyle_liu_3-1733722515412.png

 

3.Add the following code at the end of the file 

@media screen and (max-width: 767px) {
  .videoBackground .fullscreen-video-wrap {
    position: absolute;
    min-height: 300px;
    z-index: -2;
  }
}

 

 

If this is helpful, please Like and Accept the solution.
Want to modify or custom changes on store? Let me help.
- Feel free to contact me Email Me Buy Me A Coffee
harmoniefeuer
Tourist
6 0 2

its not working for me 😞

Kyle_liu
Shopify Partner
368 47 62

This is an accepted solution.

Hi  @harmoniefeuer 

1、Customize

Kyle_liu_0-1733793153371.png

2、Select the section you want to modify, such as: Image banner

Kyle_liu_1-1733793231603.png

3、Add code in the Custom CSS area

Kyle_liu_2-1733793362514.png

@media screen and (max-width: 767px) {
  .videoBackground .videoBoxInfo {
    padding: 2px 20px;
    width: 100%;
    position: absolute;
    min-height: 185px;
  }
}

 

 

 

If this is helpful, please Like and Accept the solution.
Want to modify or custom changes on store? Let me help.
- Feel free to contact me Email Me Buy Me A Coffee
harmoniefeuer
Tourist
6 0 2

Thank you it worked! Can i somehow make the button text (Jetzt Kaufen) bold?

Kyle_liu
Shopify Partner
368 47 62

In the same way, add the following code

.videoBoxInfoBtn {
font-weight: bold;
}
If this is helpful, please Like and Accept the solution.
Want to modify or custom changes on store? Let me help.
- Feel free to contact me Email Me Buy Me A Coffee