Image with Text Debut theme font and alignment adjustment

ShellyB
Excursionist
23 0 6

Hi!

Is it possible to adjust the font size and alignment of body text and title in the Image with Text section on the debut theme? Also, is it possible to center justify the button in this section? the default seems to be left align. 

Thank you!

kiddiecubebox.com

Replies 2 (2)

ZestardTech
Shopify Expert
5393 970 1291

Hello There,

1. In your Shopify Admin go to online store > themes > actions > edit code
2. Find Asset >theme.scss.css and paste this at the bottom of the file:

div#shopify-section-1623796536ef040836 h4.h3 {
text-align: center;
}

div#shopify-section-1623796536ef040836 p:last-child {
text-align: center;
}
Want to modify or develop new app, Hire us.
If helpful then please Like and Accept Solution .
Email: support@zestard.com
Shopify Apps URL :- https://apps.shopify.com/partners/zestard-technologies
Custom Modifications Into Shopify Theme | Shopify Private App | SEO & Digital Marketing
Kinjaldavra
Shopify Partner
2302 570 1422

hello @ShellyB 

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

#shopify-section-1623796536ef040836 .h3 {
    width: 65%;
    margin: 0 auto;
    text-align: center;
}

#shopify-section-1623796536ef040836 p:nth-child(5) {
text-align: center;
}