How can I align text to center in a column?

Solved

How can I align text to center in a column?

tanng
Excursionist
18 1 1

Please help to align text center of collumn.

tanng_0-1681309066385.png

Link to store: https://lekieu-2.myshopify.com/

Thank you

Accepted Solution (1)

PageFly-Victor
Shopify Partner
7865 1786 3130

This is an accepted solution.

Hi @tanng ,

This is Victor from PageFly - Landing page builder, I’d like to suggest this idea for solution:

Step 1. Go to Online Store -> Theme -> Edit code
Step 2. Open your theme.liquid theme file
Step 3. Paste below code before </body> :

<style>
li#Slide-template--18523308458273__711aa166-54f1-44ce-a8e8-311c4ca69796-1,
li#Slide-template--18523308458273__fc07ebc5-0a7b-47ac-884e-89d3ce005f6c-2{
    display: flex;
    justify-content: center;
    align-items: center;
}
</style>

PageFlyVictor_0-1681311284442.png

Hope my answer will help you.

Best regards,

Victor | PageFly

View solution in original post

Replies 3 (3)

nadinethery
Shopify Partner
19 1 6

How do you want it to look? It is centered in the column right now.

PageFly-Victor
Shopify Partner
7865 1786 3130

This is an accepted solution.

Hi @tanng ,

This is Victor from PageFly - Landing page builder, I’d like to suggest this idea for solution:

Step 1. Go to Online Store -> Theme -> Edit code
Step 2. Open your theme.liquid theme file
Step 3. Paste below code before </body> :

<style>
li#Slide-template--18523308458273__711aa166-54f1-44ce-a8e8-311c4ca69796-1,
li#Slide-template--18523308458273__fc07ebc5-0a7b-47ac-884e-89d3ce005f6c-2{
    display: flex;
    justify-content: center;
    align-items: center;
}
</style>

PageFlyVictor_0-1681311284442.png

Hope my answer will help you.

Best regards,

Victor | PageFly

tanng
Excursionist
18 1 1

Thank you so much, it works.