Move text left & image to landscape

Hi,

I want to fix the text to align all the way left with the images in grid. Also I’d like to be able to resize the grid image to different heights like landscape etc (maybe a height code I can switch for diff areas)

My site is https://vazluxe.com

current below

I want images like this:

Thank you.

Hey @Luxurymrkt ,

For moving the text use the following code:

.grid-item__text-container-wrapper {
padding-left: 0px !important;
}

Sincerely,
Lior from Studio Enchant

Hi @Luxurymrkt
You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file base.css and add this code at the end of the file

.grid-item__text-container-wrapper {
    padding-left: 0 !important;
}

Result

Best,

DaisyVo