How do I make it so my images are as a set size via CSS?
I tried this before but the images overlap into each other.
.card-product {
height: 50px;
}
How do I make it so my images are as a set size via CSS?
I tried this before but the images overlap into each other.
.card-product {
height: 50px;
}
Already fixed it myself!
.card-product {
width: 160px;
}