Center page title (dawn theme)

Hi! How can I center this page header: https://seoulstation.ch/pages/new-place-needed ?

Thank you!

1 Like

May I ask how you added the title? Is it a shopify section or custom liquid?

Hi @10xfuel

This is Henry from PageFly - Landing Page Builder App

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file base.css

Step 3: Paste the below code at bottom of the file β†’ Save

h1.main-page-title.page-title.h0 {

text-align: center;

}

Hope that my solution works for you.

Best regards,

Henry | PageFly

1 Like

add this css to your theme

h1.main-page-title.page-title.h0 {
    text-align: center;
}

Hi @10xfuel

Check this one.

  1. From you Admin page, go to Online Store > Themes
  2. Select the theme you want to edit
  3. Under the Asset folder, open the main.css(base.css, style.css or theme.css)
  4. Then place the code below at the very bottom of the file.
.section-template--18505260237101__main-padding .main-page-title {
    text-align: center;
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!