Hi, i am using theme BLOCKSHOP v10.2.0 CLICK HERE TO SEE
See Image below, i would like to make the gaps Narrow in between the Main Page “Grid With Overlay” and also the Collection Page images.
Any help would be appreciated.
Hi, i am using theme BLOCKSHOP v10.2.0 CLICK HERE TO SEE
See Image below, i would like to make the gaps Narrow in between the Main Page “Grid With Overlay” and also the Collection Page images.
Any help would be appreciated.
Hey @lucianofashion1
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
Add the following code in the bottom of the file above tag
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
You can achieve this by adding this CSS code I believe you don’t want to remove the gap just wanted to minimize it right
You just need to follow these steps:
And past that CSS Code:
.featured-grid--body {
gap: 15px;
}
.featured-grid--root {
padding-top: 40px;
}
The Result:
This CSS is for the Collection Page Gap pasted into the same file name as base.css or theme.css :
.main-collection--grid {
gap: 10px;
}
The Result:
If you want the gap to be complete;y remove just change the value of gap to 0
I hope this solution works for you!
If it does, please Like It and Mark It As A Solution, or support me by Buying Me A Coffee to keep me going!
Sorry. For Main Page.
I still want a gap but very narrow, on the edges of the screen and in between horizontal and vertical.
For the Collection Pages:
I still want a gap but very narrow, on the edges of the screen and in between horizontal and vertical.
add this CSS
.featured-grid--root, .main-collection--root {
padding-inline: 5px;
}
as well with the others it will resolve the mobile issue
Sure add this CSS
.main-product--root {
padding-inline: 5px;
}
Much appreciated, One more thing.
Collection Header on Mobile and Desktop. too much White Above and Below and on edges, can you resolve?
Thanks
Sure here is the CSS
@media(max-width:768px){
.collection-header--heading {
padding: 10px 5px 5px !important;!i;!;
}
.navigation--mobile-header {
padding-top: 0 !important;!i;!;
}
}
I hope this solution works for you!
If it does, please Like It and Mark It As A Solution, or support me by Buying Me A Coffee to keep me going!