How to Remove the Space between my image banner and button in mobile

Solved

How to Remove the Space between my image banner and button in mobile

AndreaRLN
Visitor
3 0 0

In my mobile view there ir a lot of space between de button and the image banner. How can i remove that space. Also I will like to make button smaller just in mobile.Screen Shot 2024-10-31 at 11.08.08.png

Accepted Solution (1)
Moeed
Shopify Partner
7545 2035 2502

This is an accepted solution.

Hey @AndreaRLN 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
@media screen and (max-width: 767px) {
.banner--mobile-bottom .slideshow__text.banner__box {
    padding-top: 0 !important;
}
}
</style>

RESULT:

Moeed_0-1730529305108.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


View solution in original post

Replies 4 (4)

Moeed
Shopify Partner
7545 2035 2502

Hey @AndreaRLN 

 

Welcome to Shopify Community! Can you share your Store URL so I can have a look on it? Also, if you have password enabled then please share the password as well. Your cooperation would be greatly appreciated.

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


AndreaRLN
Visitor
3 0 0

https://amondea.com/

this is it, i think it doesnt have a password

Moeed
Shopify Partner
7545 2035 2502

This is an accepted solution.

Hey @AndreaRLN 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
@media screen and (max-width: 767px) {
.banner--mobile-bottom .slideshow__text.banner__box {
    padding-top: 0 !important;
}
}
</style>

RESULT:

Moeed_0-1730529305108.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


AndreaRLN
Visitor
3 0 0

Thank you very much! This solved my problem