Remove padding above section?

Solved

Remove padding above section?

stinem123
Trailblazer
160 0 28

Hi, can someone help me remove the padding above the product collection section (on mobile device only)

 

(I have attached photos below - the blue part is what i want to get removed)

 

Link for my website.: https://www.melchiorjewelry.com/collections/deluxe-moonstone-collection

Thank you so much, hope someone can help me out here!

IMG_8677 2.jpg

 

 

 

 

 

.

.

.

.

.

.

.

.

Accepted Solution (1)

pawankumar
Shopify Partner
625 92 113

This is an accepted solution.

Hi @stinem123 
Please put this css in theme.liquid before body closing tag </body>

<style>
@media (max-width: 768px) {

    .bubble-slider-template--23686647742812__ss_circle_menu_pro_wwUxBG.swiper.swiper-container-initialized.swiper-container-horizontal {
   padding-bottom: 0px !important;
}
form.filter-bar.animation--filter-bar.is-visible {

padding-top: 0px !important;
}
}
</style>

Thanks!

- Need a Shopify developer? Chat on WhatsApp +91-9467121281
- Coffee Tip: Buymeacoffee  | Email: thepkpawankumar@gmail.com
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution
Best regards,
Pawan

View solution in original post

Replies 2 (2)

pawankumar
Shopify Partner
625 92 113

This is an accepted solution.

Hi @stinem123 
Please put this css in theme.liquid before body closing tag </body>

<style>
@media (max-width: 768px) {

    .bubble-slider-template--23686647742812__ss_circle_menu_pro_wwUxBG.swiper.swiper-container-initialized.swiper-container-horizontal {
   padding-bottom: 0px !important;
}
form.filter-bar.animation--filter-bar.is-visible {

padding-top: 0px !important;
}
}
</style>

Thanks!

- Need a Shopify developer? Chat on WhatsApp +91-9467121281
- Coffee Tip: Buymeacoffee  | Email: thepkpawankumar@gmail.com
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution
Best regards,
Pawan
stinem123
Trailblazer
160 0 28

Thank you so much @pawankumar , really appreciate!!