Centre align paragraph text (image with text section)

Hi everyone

I’m struggling with the simple task of centre aligning some body text of an image with text section on my mobile view.

At the moment I’m putting the following code into my theme.scss.liquid file

@media only screen and (max-width: 749px) {
#shopify-section-template–1644120866612d0b09 .rte-setting {text-align: centre;}

}

but is coming up with an error. I have attached a screen shot below which show you what section I would like help with. My preview link is below.

https://k07bffpuz2vgow9c-54993551588.shopifypreview.com

Thank you.

Hello @Timstar ,

Use this css

@media screen and (max-width: 749px) {
.rte.rte-setting.featured-row__subtext {
   text-align: center;
}
}

Thanks

Hi @Timstar , I would like to suggest to edit the content like this screenshot below:

Hope that helps

Thank you for being so quick.

Can you please tell me what section to put before your code?

e.g. #shopify-section-template–16533096136932__1643065458b042bb44

Edit theme.scss.liquid under Assets and add the css code at the bottom.

Thank you for your help. I’m putting this code in but it’s not working?

@media screen and (max-width: 749px) {
#shopify-section-template–1644120866612d0b09 .rte.rte-setting.featured-row__subtext {
text-align: center;
}
}

Can you help me with the whole cold? I would appreciate it.

Hi @Timstar

This is PageFly - Advanced Page Builder. I would love to give you some recommendations

-Go to Online Store->Theme->Edit code

-Asset-> theme.scss.liquid paste the below code at the top of the file.

@media screen and (max-width: 749px) {

.rte.rte-setting.featured-row__subtext {

text-align: center;

}

}

Hope my solution works perfectly for you!

Best Regards;

PageFly

Hi @Timstar ,

please try to put this code before in theme.liquid:

@media only screen and (max-width: 750px) { .shopify-section .feature-row__text--left .featured-row__subtext { text-align: center!important; } }

Please try it and let me know how it goes

Thanks

Hello @Timstar

Go to the online store ->Theme ->Assets-> theme.scss.liquid >Add Code at the bottom

@media screen and (max-width: 749px) {
.rte.rte-setting.featured-row__subtext {
margin: auto;
width: 286px;
text-align: center;
}
}

This code turns every Image with text section body text to centre aligned.

I just want the image with text section in the screen shot to have body text centred.

Can you fix this?

This code make all body copy in ALL Image with text sections centred. I only want the landing page on mobile to be centred. Can you help?

This code makes all body copy in ALL Image with text sections centred.

I only want the landing page on mobile to be centred. Can you help?

This code make all body copy in ALL Image with text sections centred.

I only want the landing page on mobile to be centred. Can you help?

Hello Again @Timstar

It will be helpful if you try this code -

Go to the online store ->Theme ->Assets-> theme.scss.liquid >Add Code at the bottom

@media screen and (max-width: 749px) {
div#shopify-section-1644120866612d0b09 p {
    margin: auto;
    width: 320px;
    text-align: center;
}
}