Hi guys,
Need to fix The “Add to cart” button margins to be probley placed under product card. Also, adjust allover margings to avoid scroll bar. Bellow code given and a pic of the website.
.product-card {
padding: 5px 5px; /* change product collectin padding value as you like Top and Bottom = 25px - Left and Right = 10px*/
}
#Collection {padding: 15px;}
#Collection .grid–view-items {margin-left: 0px;}
#Collection .grid–view-items .small–one-half {padding-left: 15px;}
#shopify-section-collection-template #Collection .grid–view-items{
display: flex;
flex-flow: wrap;
padding: 10px 30px 0;
margin-left: -45px;
margin-right: -30px
}
#shopify-section-collection-template #Collection .grid–view-items .grid__item {
margin-bottom: 35px;
}
#shopify-section-collection-template #Collection .grid–view-items .product-card {
display: flex;
flex-flow: column;
height: 100%;
margin-bottom: 0;
}
#shopify-section-collection-template #Collection .grid–view-items .product-card br{
display: none;
}
#shopify-section-collection-template #Collection .grid–view-items .product-card .product-card__image-with-placeholder-wrapper {
min-height: 70%;
margin-bottom: 10px;
display: flex;
align-items: center;
}
.product-card + form {
display: flex;
justify-content: space-between;
}
.product-card + form input {
width: 70%;margin-top: 15px;
}
.product-card + form input#quantity {
width: 25%; margin-top: 15px;
}
Thank you




