Hi there!
I’m using collage sections on my website with an Origin theme. The images have different width in the collage (as shown on image below) and I would them to have the same width.
Does someone know what code I could use to change that?
Thank you!
P
If someone ever needs it, I found a solution:
I added this code to the Custom CCS Section of the Collage:
div {
display: flex;
justify-content: space-between;
}
div {
flex: 1;
}
img {
width: 100%;
height: auto;
}
Thank you. This is what I was looking for to do with my shop. Appreciate you posting it.