How to align text vertically when using "image with text" section

Hi I am using “image with text” section, and I would like to have the text move up until it is aligned with the top of the image. How can I do this with CSS ? Thank you.

The first picture shows the default image with text.

The second picture shows my intended result.

Wow..thats great ! Yes i followed your steps and it works ! Many thanks.

Where are the steps?

Hi @kwypych

You can put this css in theme.liquid before body closing tag

<style>
@media(min-width: 768px) {

.image-with-text__content {
   padding-top: 0px
}
}
</style>

Thanks!