How can I resize home images in Dawn theme?

Hi,

How do I adjust the image size on the ‘Packages section’ of the homepage. I want to reduce the height of the two images on the right so they line-up with the large image on the left.

website: www.myozco.com

pw: Myozco123456

Easiest way to do it, is to add the below CSS, it’s a bit dirty though, but it works fine.

.section#shopify-section-template--15367142506668__collage .card__content {
    position: absolute;
    bottom: -88px;
}

By changing to absolute, it removes the text from the flexbox and aligns the rest of the elements automatically.

The simplest solution is to add the CSS below; it’s a little sloppy, but it works nicely. .section#shopify-section-template–15367142506668__collage .card__content { position: absolute; bottom: -88px; }

Whereabouts do I add this code?

Whereabouts do I add this code?

Hi @leehew ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/component-card.css->paste below code at the bottom of the file:
.section#shopify-section-template--15367142506668__collage .card__content {
    position: absolute;
    bottom: -88px;
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

Best regards.

Thank you! Worked.