Help How to adjust spacing between Icon and Banner ( empty space is too wide )

Solved

Help How to adjust spacing between Icon and Banner ( empty space is too wide )

OLIV1
Explorer
53 1 14

Help HELP 

I need to do adjustment in between

1. the Icon List and Banner 

2. The Header and Icon List

Screenshot 2025-04-28 at 8.24.40 PM.png

 

Thank you 

OLV
Accepted Solution (1)
topnewyork
Astronaut
1368 165 224

This is an accepted solution.

@OLIV1 
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. In theme.liquid, paste the below code before </head>

<style>
  div#shopify-section-template--19246498251001__dynamic_slideshow {
    margin-top: -4rem !important;
}
div#shopify-section-template--19246498251001__845962e2-72ee-42cd-ab5b-4ae9ad6585df {
    margin-top: -2rem !important;
}
</style>

If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!

Need a Shopify developer? Hire us at Top New York Web Design
Boost Your Store Sales with Volume/Tier Discount Try Big Bulk Discount
Create New Shopify Store For Just 1$/Month

View solution in original post

Replies 6 (6)

topnewyork
Astronaut
1368 165 224

Hi @OLIV1  , kindly provide your store URL please and if it is password protected, please share the password as well. Thanks

Need a Shopify developer? Hire us at Top New York Web Design
Boost Your Store Sales with Volume/Tier Discount Try Big Bulk Discount
Create New Shopify Store For Just 1$/Month
OLIV1
Explorer
53 1 14

Hi 

Here is the link 

https://oscarliving.co.id/

I am using empire 11.13 right now 

OLV
topnewyork
Astronaut
1368 165 224

This is an accepted solution.

@OLIV1 
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. In theme.liquid, paste the below code before </head>

<style>
  div#shopify-section-template--19246498251001__dynamic_slideshow {
    margin-top: -4rem !important;
}
div#shopify-section-template--19246498251001__845962e2-72ee-42cd-ab5b-4ae9ad6585df {
    margin-top: -2rem !important;
}
</style>

If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!

Need a Shopify developer? Hire us at Top New York Web Design
Boost Your Store Sales with Volume/Tier Discount Try Big Bulk Discount
Create New Shopify Store For Just 1$/Month
OLIV1
Explorer
53 1 14

Dear Top Newyork 

I try to put the code and it works only for the desktop version 

can we do the same to the mobile version to be one line as well like a desktop ? ??

Screenshot 2025-04-28 at 9.10.22 PM.png

OLV
topnewyork
Astronaut
1368 165 224

yeah sure, you can try this code

<style>
  @media (max-width: 768px){
   div#shopify-section-template--19246498251001__dynamic_slideshow {
    margin-top: -4rem !important;
}
div#shopify-section-template--19246498251001__845962e2-72ee-42cd-ab5b-4ae9ad6585df {
    margin-top: -2rem !important;
}
}
</style>

 If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!

Need a Shopify developer? Hire us at Top New York Web Design
Boost Your Store Sales with Volume/Tier Discount Try Big Bulk Discount
Create New Shopify Store For Just 1$/Month
OLIV1
Explorer
53 1 14

I think This code is not working with the mobile version 

OLV