How can I reduce the size of the space between the two sections? This is on a collections page on a mobile device.
See screenshot below and link here: https://propmoney.com/collections/realaged-products?_pos=1&_psq=Updated&_ss=e&_v=1.0
Thanks in advance.
1 Like
Hi @thekenstar
Try 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 only screen and (max-width: 719px){
nav.breadcrumbs-container {
display: none !important;
}
div#shopify-section-template--20590908768532__main {
margin-top: 0px !important;
}
}
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
@Made4uo-Ribe Fantastic! It definitely lessened the space. Is that the limit of how small I can make the space?
1 Like
We can reduce more. Do you like to near?
Try this one same Instruction.
@media only screen and (max-width: 719px){
.pxs-image-with-text-content-wrapper.pxs-image-with-text-content-position-y-bottom.pxs-image-with-text-content-position-x-center {
display: none;
}
div#shopify-section-template--20590908768532__main {
padding-top: 20px;
}
}
And Save.
I just leave 20px for space. You can remove if you dont like.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
@Made4uo-Ribe That worked great! Thank you so much.
1 Like
Try this one for desktop.
nav.breadcrumbs-container {
display: none !important;
}
div#shopify-section-template--20590908768532__main {
margin-top: 20px !important;
}
And Save.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
@Made4uo-Ribe Wow you are an expert. Thank you so much for your help!!
1 Like