Re: How to Increase Space Between Main Menu and Product Only on Desktop?

Solved

How to Increase Space Between Main Menu and Product Only on Desktop?

Simon159
Explorer
135 0 26

Screenshot 2023-12-28 at 1.51.39 AM.png

https://charmente.com/products/long-sleeve-flared-bodysuit

I only want to increase the space between the main menu and the product on desktop. The spacing is how I want it  for mobile. Thank you!

Accepted Solution (1)

Dan-From-Ryviu
Shopify Partner
11615 2276 2457

This is an accepted solution.

Go to Online store > Themes > Edit code > open theme.liquid, add this code below after <head>

{%- if template.name == 'product' -%}
<style>
@media (min-width: 990px) {
#MainContent {
margin-top: 40px !important;
}
}
</style>
{%- endif -%}

 

- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.

View solution in original post

Replies 2 (2)

niraj_patel
Shopify Partner
2391 516 516

Hello @Simon159 

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>

  .product.product--small {
     margin-top: 25px;
  }

</style>

 

techlyser_web_1-1703746817546.png

 

 

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

Dan-From-Ryviu
Shopify Partner
11615 2276 2457

This is an accepted solution.

Go to Online store > Themes > Edit code > open theme.liquid, add this code below after <head>

{%- if template.name == 'product' -%}
<style>
@media (min-width: 990px) {
#MainContent {
margin-top: 40px !important;
}
}
</style>
{%- endif -%}

 

- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Reton: Loyalty & Rewards - Earn points through tasks, redeem for discounts, and enjoy exclusive VIP rewards!
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- En...
Sign up now.