i want move all the title to the middle

Hi can you kindly share the store preview link so i can check and tell you the solution

https://e169bd-2c.myshopify.com/

aas12356

Hi @Jim_65

You can try to add this code to Custom CSS in Online Store > Themes > Customize > Theme settings.

.title-wrapper--no-top-margin > .title {
    text-align: center;
}
.title-wrapper-with-link {
    justify-content: center;
}

Hi @Jim_65 ,

Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code

Step 2: Search file theme.liquid

Step 3: Insert this code above tag:


Here is result:

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes:

Hello @Jim_65
Go to online store ---------> themes --------------> actions ------> edit code------->base.css
add this code at the end of the file

.title-wrapper--no-top-margin > .title {
text-align: center;
}

and the result will be

If this was helpful, hit the like button and mark the job as completed.
Thanks

Hi @Jim_65 , the following steps will help you center all the title
Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code

Step 2: Search file base.css, theme.css, styles.css, custom.css or theme.scss.liquid

Step 3: Insert the below code at the bottom of the file → Save

.blog__title {
    margin: auto !important;
}
h2 {
    margin: auto;
    text-align: center;
    width: 100%;
}

Here is result:

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you