How to align text on mobile

Solved

How to align text on mobile

CreatorTim
Navigator
471 1 71

Hi, how can I align the text to the level of the image? I only want to do this for this section:

CreatorTim_0-1736977232413.png

 

So I just want the text to be more below the image, BUT I don’t want it centered, I want it normally aligned to the left, just moved to the level of the image.

 

Here’s my store URL: https://1049xn-ya.myshopify.com/

 

Thanks a lot,
Tim

Accepted Solution (1)
DaisyVo
Shopify Partner
4469 501 598

This is an accepted solution.

Hi @CreatorTim 

 

Please add this code

 

@media screen and (max-width: 768px){
.image-with-text__text-item.grid__item {
    padding-inline: 30px;
}
}

 

image_480.png

 

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 4 (4)

DaisyVo
Shopify Partner
4469 501 598

Hi @CreatorTim 

 

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 (max-width: 768px){
h2.image-with-text__heading.inline-richtext.h1 {
    text-align: center !important;
}
div.image-with-text__content {
    align-items: center !important;
}
}

 

Here is the result: image_720.png

 

I hope this 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
CreatorTim
Navigator
471 1 71

Hey, I didn’t want the text centered. I want it to stay left-aligned, but just moved to the middle.

CreatorTim_0-1737057829764.png

 

Thanks,
Tim

DaisyVo
Shopify Partner
4469 501 598

This is an accepted solution.

Hi @CreatorTim 

 

Please add this code

 

@media screen and (max-width: 768px){
.image-with-text__text-item.grid__item {
    padding-inline: 30px;
}
}

 

image_480.png

 

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
CreatorTim
Navigator
471 1 71

Thank you!