Hi,
Only in the mobile view there is this big white space. Anyway to reduce it? Its not like this in desktop view.
Thanks!
Hi,
Only in the mobile view there is this big white space. Anyway to reduce it? Its not like this in desktop view.
Thanks!
Hi @turtlelionowl
Please put this code
.slideshow__text:empty {
display: none;
}
in custom css part of slideshow section
Thanks!
You can try this code by following these steps:
Step 1: Go to the online store ->Theme ->Edit Code.
Step 2: Find the theme.liquid file and add the following code above the tag
Hopefully it will help you. If yes then Please don’t forget hit Like and Mark it as solution!
That space is the container content text of the banner. Check this one.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media screen and (max-width: 749px) {
.banner--mobile-bottom .slideshow__text.banner__box {
display: none;
}
}
And Save.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
This worked, thanks!!