We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

Re: Removing the gap btwn mobile slideshow images and pagination dots

Solved

Removing the gap btwn mobile slideshow images and pagination dots

pdgdemds
Visitor
2 0 5

So there’s a slideshow I added and I made it available to view only on mobile, but there’s still a large white space between the image and the pagination dots that I can’t get rid of. I tried adding the following code to theme.liquid to hide the extra content on mobile:

<style>
@media screen and (max-width: 749px){
.banner--mobile-bottom:not(.banner--stacked) .banner__content {
display: none;
}
}
</style>

 

—but the issue still persists. I’m using the Studio theme, version 15.3.1, and would appreciate any help figuring out what’s causing this gap and how to remove it.

 

https://ktjtgs-wb.myshopify.com/?pb=0

Accepted Solution (1)

Dan-From-Ryviu
Shopify Partner
12073 2359 2539

This is an accepted solution.

Hi @pdgdemds 

You can solve it by turning off Stack text below image option in Mobile layout of Slideshow section settings Screenshot 2025-05-26 at 13.54.00.png

- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- 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.
- Enjoy 1 month of Shopify for $1. Sign up now.

View solution in original post

Replies 5 (5)

TheScriptFlow_
Shopify Partner
848 63 106

Hey paste this code in the end of base.css file.

@media only screen and (max-width: 767px) {
.slideshow__text.banner__box.content-container.content-container--full-width-mobile.color-scheme-1.gradient.slideshow__text--center.slideshow__text-mobile--center {
    display: none !important;
}
}

- Need a Shopify Specialist? Chat on WhatsApp +923036471248 Or Email at info@thescriptflow.com

- Boost Your Sales with Affiliate Marketing - UpPromote: Affiliate & Referral


- If my solution was helpful, mark it as a solution and hit the like button!

BiDeal-Discount
Shopify Partner
819 109 182

Hi @pdgdemds 

let try to add this Custom CSS code:

@media screen and (max-width: 749px) {
    .banner--mobile-bottom:not(.banner--stacked) .banner__content,
    #Slide-template--17965952041048__slideshow_yDxVWm-2 {
        display: none;
    }
}

result:

BiDealDiscount_0-1748232683368.png

 

- Helpful? Like & Accept solution! Coffee tips fuel my dedication.
- BiDeal Bundle Volume Discounts: Upsell with discount bundles, quantity breaks, volume discounts & mix-and-match bundles. AOV+ with free gifts, free shipping & progressive cart
- Contact me via WhatsApp

Mustafa_Ali
Trailblazer
523 51 101
<style>
@media screen and (max-width: 767px) {
.slideshow__text.banner__box.content-container.content-container--full-width-mobile.color-scheme-1.gradient.slideshow__text--center.slideshow__text-mobile--center
Specificity: (0,8,0)
 {
    display: none !important;
 }
}
</style>

Mustafa_Ali_0-1748235189186.png

hey @pdgdemds @ dear follow these steps
Go to online store ----> themes ----> go to three Dots ----> edit code ---->find theme.liquid files ----> place the code ---->before the </body> ----->
before the body ----->
if this code work please do not forget to like and mark it solution

 

"Need a Shopify Specialist"?Chat on WhatsApp
Or email at: mustafaalideveloper001@gmail.com
"If my solution was helpful, mark it as a solution and hit the like button! And wait don't forget to"

GTLOfficial
Shopify Partner
881 182 192

Hello @pdgdemds 
Go to online store ----> themes ----> actions ----> edit code ----> assets ---> section-image-banner.css
add this code at the end of the file and save.

@media screen and (max-width: 749px) {
.banner:not(.banner--mobile-bottom) .field__input, .banner--mobile-bottom:not(.banner--stacked) .banner__box.color-scheme-1 {
display: none !important;
}
}

result
20.png

If this was helpful, hit the like button and accept the solution.
Thanks

- Buy me a Pizza
- If helpful then please Like and Accept Solution.
- Want to modify or custom changes or bug fix on the store Hire me. GTL web solutions
- Want Complete Storefront: Send an email ⇨- Email: info@gtlofficial.com - Skype: ritesh_27dh

Dan-From-Ryviu
Shopify Partner
12073 2359 2539

This is an accepted solution.

Hi @pdgdemds 

You can solve it by turning off Stack text below image option in Mobile layout of Slideshow section settings Screenshot 2025-05-26 at 13.54.00.png

- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- 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.
- Enjoy 1 month of Shopify for $1. Sign up now.