How to remove this space from only mobile and remove the separator line only from mobile

Solved

How to remove this space from only mobile and remove the separator line only from mobile

NOT1
Shopify Partner
128 1 38

Screenshot 2024-08-29 0-1.png

 I am currently using this custom code 

@media screen and (max-width: 749px) {
    .product__media-list .product__media-item {
        width: 100% !important;
      height: 100% !important;
      margin: 0 !important;
      padding: 0px !important;
    }
}

 Thanks in advance 🙂 

Accepted Solutions (2)

GTLOfficial
Shopify Partner
442 89 87

This is an accepted solution.

Hello @NOT1 

Go to online store ----> themes ----> actions ----> edit code---->base.css
add this code at the end of the file.

.section-template--23144750219560__main-padding {
padding-top: 0px !important;
}

result
1.png

If this was helpful, hit the like button and accept the solution.
Thanks

- Buy me a Pizza
- If helpful then please Like and Accept Solution.
- Want to modify or custom changes or bug fix on the store Hire me. GTL web solutions
- Want Complete Storefront: Send an email ⇨- Email: info@gtlofficial.com - Skype: ritesh_27dh

View solution in original post

niraj_patel
Shopify Partner
2378 514 511

This is an accepted solution.

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
@media screen and (max-width: 767px){
  .section-template--23144750219560__main-padding {
      padding-top: 0 !important;
    }
}
</style>

niraj_patel_0-1724909781154.png

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com

View solution in original post

Replies 4 (4)

Sangeetanahar
Excursionist
312 20 47

Hello @NOT1 


I am Shopify Developer. I can fix this issue .Can you please share your Website URL and Password.

Thanks

Was I helpful?

Buy me a coffee



Want to modify or custom changes or bug fix on store . Or Need help with your store? Or -Want Complete Storefront
Email me -sangeetarahuldhiman@gmail.com - Skype: live:sangeetarahuldhiman -Whatsapp: +917009811712
Checkout Some Free Sections Here
NOT1
Shopify Partner
128 1 38

 

Thanks

niraj_patel
Shopify Partner
2378 514 511

This is an accepted solution.

You can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file

3. Paste the below code before </body> on theme.liquid
<style>
@media screen and (max-width: 767px){
  .section-template--23144750219560__main-padding {
      padding-top: 0 !important;
    }
}
</style>

niraj_patel_0-1724909781154.png

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com

GTLOfficial
Shopify Partner
442 89 87

This is an accepted solution.

Hello @NOT1 

Go to online store ----> themes ----> actions ----> edit code---->base.css
add this code at the end of the file.

.section-template--23144750219560__main-padding {
padding-top: 0px !important;
}

result
1.png

If this was helpful, hit the like button and accept the solution.
Thanks

- Buy me a Pizza
- If helpful then please Like and Accept Solution.
- Want to modify or custom changes or bug fix on the store Hire me. GTL web solutions
- Want Complete Storefront: Send an email ⇨- Email: info@gtlofficial.com - Skype: ritesh_27dh