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
282 2 127

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
856 176 191

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
2391 516 516

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 3 (3)
NOT1
Shopify Partner
282 2 127

 

Thanks

niraj_patel
Shopify Partner
2391 516 516

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
856 176 191

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