Please i need help on how to remove the whitespace from below my image banner on the mobile version.
Topic summary
A user encountered unwanted white space below an image banner on their Shopify store’s mobile version. Multiple community members provided CSS-based solutions:
Common CSS approach:
- Navigate to Online Store → Theme → Edit code
- Locate base.css, theme.css, or styles.css
- Add media query targeting mobile viewports (max-width: 767px or 749px)
- Set banner height to
auto !important
Alternative non-code solution:
One contributor suggested simply deselecting the ‘Show container on mobile’ option in the theme’s customization settings for the image banner section.
Resolution:
The original poster confirmed that one of the solutions worked, successfully removing the white space. The issue appears resolved, with the non-code approach being the simplest method that proved effective.
Hi @torisamorgan ,
You can add code by following these steps
- Go to Online Store → Theme → Edit code.
2. Open your theme.liquid file - Paste the below code before on theme.liquid
Thanks.
Hi @torisamorgan ,
You can try this code by following these steps:
Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code
Step 2: Search file base.css, theme.css or styles.css
Step 3: Insert the below code at the bottom of the file → Save
@media only screen and (max-width: 767px) {
.banner {
height: auto !important;
}
}
Result:
Hope this can help you
Kind regards,
HDL-Shin
- Go to Online Store → Theme → Edit code.
- Find the file assets/base.css and paste the code below at the bottom of the file."
@media screen and (max-width: 749px){
.banner--stacked {
height: auto!important;
}
}
Screenshot :-
@devcoders @BrewBrains @HDL-Shin Thank you for your answer. It was really helpful and helped me a lot. Thanks for your answers.
You’re welcome! I’m glad I could help. If you have any more questions or need further assistance, feel free to ask anytime.
This is Noah from PageFly - Shopify Page Builder App
Please add code here to fix it:
Step 1: Online Stores > Themes > Edit code
Step 2: Choose file theme.liquid
Step 3: Add code above the tag
Hope my solution will help you resolve the issue.
Best regards,
Noah | PageFly
Hi @torisamorgan ,
To address the issue of white space below the image banner, I discovered a solution that doesn’t involve adding any code. Instead, simply deselect the ‘Show container on mobile’ option in the customization settings of the image banner. This adjustment effectively removes the white space below the image banner without any need for additional coding
If my suggestion works for you, please let me know by giving it a like or marking it as a solution. Thanks!
thanks a lot this worked




