Hello.
I would like to make my collection cards much smaller. I am using origin theme, can someone help? Thank you!
A user seeks help reducing the size of collection cards in the Origin theme.
Another participant provides a CSS solution:
.grid--collection-desktop-2 grid item widthcalc(25% - 40px) for both width and max-width propertiesjustify-content: centerThe code should be added to the theme’s CSS file. This approach appears to make cards smaller by changing their grid layout proportions, though the conversation doesn’t confirm whether the solution was tested or resolved the issue.
Hello.
I would like to make my collection cards much smaller. I am using origin theme, can someone help? Thank you!
Hello @CarpiStraps ,
Add this code in your theme css file,
@media (min-width: 768px){
.section-collection-list .contains-card–collection {
justify-content: center;
}
.grid–2-col-desktop li.grid__item {
width: calc(25% - 40px / 2);
max-width: calc(25% - 40px / 2);
}
}