Re: How to remove button padding in mobile view from hidden buttons on slideshow

How to remove button padding in mobile view from hidden buttons on slideshow

lyoung94
Excursionist
11 0 4

Currently using this code to remove slideshow buttons on mobile, but wanting to remove extra padding as seen below

padding.JPG


@media
screen and (max-width: 767px) { .banner__buttons { display: none !important; } /* Adjust the padding or margin of the parent container */ .banner__container { padding-bottom: 0; /* or set to your desired value */ margin-bottom: 0; /* or set to your desired value */

Replies 6 (6)

ZestardTech
Shopify Partner
5720 1049 1380

Hello There,

Please share your store URL and password.
So that I will check and let you know the exact solution here.

Want to modify or develop new app, Hire us.
If helpful then please Like and Accept Solution .
Email: support@zestard.com
Shopify Apps URL :- https://apps.shopify.com/partners/zestard-technologies
Custom Modifications Into Shopify Theme | Shopify Private App | SEO & Digital Marketing
lyoung94
Excursionist
11 0 4

www.legendaryloot.com.au no pw as it is already an open store.

Sangeetanahar
Excursionist
307 19 45

HELLO @lyoung94 

I Can fix it .Please share your store URL and password.

Thanks

Was I helpful?

Buy me a coffee



Want to modify or custom changes or bug fix on store . Or Need help with your store? Or -Want Complete Storefront
Email me -sangeetarahuldhiman@gmail.com - Skype: live:sangeetarahuldhiman -Whatsapp: +917009811712
Checkout Some Free Sections Here

lyoung94
Excursionist
11 0 4

@media screen and (max-width767px) { .banner__buttons { display: none !important; }
This code was used by i added the rest with help from chatgpt, did not work

goldi1
Excursionist
93 7 19

Hey @lyoung94 

you want remove the white space  in mobile view ??

Screenshot 2024-09-05 125141.png

Was I helpful?

Buy me a coffee



Want to modify or custom changes or bug fix on store . Or Need help with your store? Or -Want Complete Storefront
Email me -rahul@prowebcoder.com - Skype: live:dhiman.639

goldi1
Excursionist
93 7 19

Hello @lyoung94 

Go to online store ----> themes ----> actions ----> edit code ---->assets ---->component-slideshow.css....>line number 67
search the code

@media only screen and (max-width: 749px) {
    .banner--mobile-bottom .slideshow__text.banner__box {
        height: 100%;
       
    }
	}

replace the code

@media only screen and (max-width: 749px) {
    .banner--mobile-bottom .slideshow__text.banner__box {
        height: 100%;
        padding: 0px;
    }
	}

result will be 

Legendary-Loot-Gaming-and-Collectables-–-Small-Australian-Business.png

thank you 

Was I helpful?

Buy me a coffee



Want to modify or custom changes or bug fix on store . Or Need help with your store? Or -Want Complete Storefront
Email me -rahul@prowebcoder.com - Skype: live:dhiman.639