Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Custom Video Section moving on different screen sizes?
Password01
I installed a custom SS section and I have two custom sections above that I wanted stickied.
Because I have them sticked I needed to custom adjust the video section with margin 200px, except when I move the broswer around it had a giant space above.
Any way to fix this?
IMAGE1: This is what the regular desktop view looks like:
IMAGE2: This is what it looks like when I minimize the screen on a side window.
There is a big white space above the video because I added margin 200px?
Any way to pin the video like the other sections without needing to add a margin?
Hi, Please add below css to your store custom css field or theme css file then empty space will be removed.
@media only screen and (min-width: 769px) {
.focus-none {
margin-top: 0px !important;
}
}