Remove white space on mobile between product card and featured collection description

Solved

Remove white space on mobile between product card and featured collection description

alexschar
Tourist
12 0 2

theres no gap on desktop but on mobile there is a large space between the description and products cards. How can I remove this space? I've placed a red line where I'd like the space removed

 

rosegoldco.shop

Accepted Solution (1)

PageFly-Theodor
Shopify Partner
691 86 104

This is an accepted solution.

Hi @alexschar 


This is Theodore from PageFly - Shopify Page Builder App

 

Please add this code to your theme.liquid above the </head> to get this solved

Step 1: Online Stores > Themes > More Actions > Edit code

Step 2: click on theme.liquid and paste the code above the </head>

<style>
@media screen and (max-width: 989px){
.slider.slider--tablet .slider__slide {  
    padding-top: 0 !important;
}
}
</style>

Hope this can help you solve the issue

 

Best regards,

Theodore | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


PageFly - #1 Page Builder for Shopify merchants.


All features are available from Free plan. Live Chat Support is available 24/7.

View solution in original post

Replies 3 (3)

alexschar
Tourist
12 0 2

Screenshot 2024-03-11 at 9.07.41 AM.png

PageFly-Theodor
Shopify Partner
691 86 104

This is an accepted solution.

Hi @alexschar 


This is Theodore from PageFly - Shopify Page Builder App

 

Please add this code to your theme.liquid above the </head> to get this solved

Step 1: Online Stores > Themes > More Actions > Edit code

Step 2: click on theme.liquid and paste the code above the </head>

<style>
@media screen and (max-width: 989px){
.slider.slider--tablet .slider__slide {  
    padding-top: 0 !important;
}
}
</style>

Hope this can help you solve the issue

 

Best regards,

Theodore | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


PageFly - #1 Page Builder for Shopify merchants.


All features are available from Free plan. Live Chat Support is available 24/7.

alexschar
Tourist
12 0 2

Amazing!! It worked perfectly, thanks for replying so quickly!