Can someone help me with how to fit my desktop view for a video section in the Pipeline theme? I was able to make the mobile phone fit but when I get back to my desktop view it seems the height of the video is cut off.
1 Like
Hi @jmariegocela ,
We do not have access to paid theme, it would be best if you can provide your website so we can provide specific code for you
The website is not live yet.
But this is the website, https://greenside-golf-llc.myshopify.com/
1 Like
thanks for url but sorry i can’t see video section at home page please share preview url if you have used different theme
https://www.greensidegolf.co/ here it is, please help me!
1 Like
thanks can you please try this code
- Go to Online Store->Theme->Edit code
- Asset->/theme.css ->paste below code at the bottom of the file.
@media only screen and (max-width: 767px) {.homepage-video {height: auto;}}
thanks for update
Hi, I have pasted the code already but the video on desktop and mobile is still cut out.
if possible to share screenshot
Okay
See this preview https://www.greensidegolf.co/
Hi @jmariegocela ,
I see the issue. Your section has a limited height. Please add the code below instead
- From your Admin Page, click Online Store > Themes >Actions > Edit code
- In the Asset folder, open the theme.css
- Paste the code below at the very bottom of the file.
.section--image.homepage-video.fade-in-child.js-overflow-container.use_pixels_650.text--white {
aspect-ratio: 3/2;
height: auto;
}