How to resize image in "image with text" minimal theme?

Hi Everybody,

Hopefully someone could help me out here, i have add the section; image with text, and have change the size and color of the text in css.
Unfortunately i don’t know how to resize the image in that section. I’m using the minimal theme.

Website: www.worldofresells.com
Password: Rtohth

Thanks in advance! :heart:

Find the anwer by myself, for other people:

You should inspect the element in your own browser (f12 on windows), you could see the image name: Minimal theme got: FeatureRowImage-xxxxxx
You could add css code in theme.scss.liquid and add the following code:

#FeatureRowImage–xxxxxxxxxxxxxxxxxx{
width: 60%;
left: 0px;
right: 0px;
}

#FeatureRowImage–xxxxxxxxxxxxxxxxxxxx img{
width: 100%;
left: 0px;
right: 0px;
}