Hi there! hopefully @tuanphan sees this because this person is a genius.
Okay so my new Shop page only has three products, and to match the rest of my website, I customized the images to have 35px border-radius and 2px border - but for some reason this is not translating to the mobile site. I've tried adding the mobile code to the custom css but I'm not quite getting it. Below is the code I currently have going:
////Shop Customizations////
.products.collection-content-wrapper .grid-item .grid-image{
border: 2px solid #000;
border-radius: 35px;
box-shadow: 5px 5px 15px 5px rgba(0,0,0,0.1)
}
.products.collection-content-wrapper .grid-item:hover .grid-image{
border-color: #ca5741! important;
box-shadow: none!important; }
.products.collection-content-wrapper .grid-main-meta .grid-title, h1.ProductItem-details-title {
font-family: 'Otomanopee' !important;
}
/* 2 Column Product Grid */
@media only screen and (max-width:640px) {
.products .list-grid {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.products .grid-item {
width: 48%;
}
}
.products .grid-image {
width: 85% !important;
margin: 0 auto;
}