Need Help to make the slide banner did not have so much spacing in a mobile version ?

Solved

Need Help to make the slide banner did not have so much spacing in a mobile version ?

OLIV1
Explorer
52 1 12

Hi everyone 

I need help regarding the banner ( Top spacing and Below spacing is to wide ) 

How can I make the spacing Tidy ??

My site : www.oscarliving.co.id

Theme : Empire 11.13

Screenshot 2025-04-29 at 2.58.19 PM.png

and also How can I make the display on Icon list on this section become " 1 LINE "

Screenshot 2025-04-29 at 2.58.19 PM.png

Thank You very much

OLV
Accepted Solution (1)

Mustafa_Ali
Explorer
391 39 72

This is an accepted solution.

<style>
@media screen and (max-width: 767px) {
.slideshow {
    margin-top: -2rem !important;
    margin-bottom: -6rem !important;
 }
.home-section--content.logolist--inner {
    display: flex !important;
}
}
</style>

Mustafa_Ali_0-1745917926202.png

Mustafa_Ali_1-1745917983978.png

Go to online store ----> themes ----> go to three Dots ----> edit code ---->find theme.liquid files ----> place the code ---->
before the body ----->
if this code work please do not forget to like and mark it solution

 

View solution in original post

Reply 1 (1)

Mustafa_Ali
Explorer
391 39 72

This is an accepted solution.

<style>
@media screen and (max-width: 767px) {
.slideshow {
    margin-top: -2rem !important;
    margin-bottom: -6rem !important;
 }
.home-section--content.logolist--inner {
    display: flex !important;
}
}
</style>

Mustafa_Ali_0-1745917926202.png

Mustafa_Ali_1-1745917983978.png

Go to online store ----> themes ----> go to three Dots ----> edit code ---->find theme.liquid files ----> place the code ---->
before the body ----->
if this code work please do not forget to like and mark it solution