Adjust hight of this comparison table

Solved

Adjust hight of this comparison table

NikosBat
Explorer
336 0 52

Hello guys, how can I adjust the hight of this comparison table?

NikosBat_0-1737632778581.png

 

Accepted Solution (1)

DaisyVo
Shopify Partner
3794 412 499

This is an accepted solution.

Hi @NikosBat 

 

To complete your requests, please follow these steps:
  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
  2. Paste the code provided into the Custom CSS section.

 

@media screen and (min-width: 1024px){
.image-with-text__media-item img {
    height: 300px !important;
    width: auto !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}
}

 

Here is the result: image_720.png

 

I hope thís helps

 

Best,

 

Daisy

 

 

 

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution

View solution in original post

Replies 2 (2)

DaisyVo
Shopify Partner
3794 412 499

This is an accepted solution.

Hi @NikosBat 

 

To complete your requests, please follow these steps:
  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
  2. Paste the code provided into the Custom CSS section.

 

@media screen and (min-width: 1024px){
.image-with-text__media-item img {
    height: 300px !important;
    width: auto !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}
}

 

Here is the result: image_720.png

 

I hope thís helps

 

Best,

 

Daisy

 

 

 

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution
NikosBat
Explorer
336 0 52

Thanks DaisyVo, that solved my problem