How can I center the page titles on the Dawn theme?

Hi, i need to center the page titles on the dawn theme.

2 Likes

Hello There,

Please share your store URL and password.
So that I will check and let you know the exact solution here.

@varvara123

Hi,
Welcome to Shopify Community.

Please share your store URL and password.
So that I will check and let you know the exact solution.

@varvara123 assets/base.css ->paste below code at the bottom of the file.

.title-wrapper-with-link {
    align-items: center;
    text-align: center !important;
    display: block !important;
}

https://var-vara.myshopify.com/

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >theme.css and paste this at the bottom of the file:
h1.main-page-title.page-title.h0 {
text-align: center;
}

Screenshot :- https://prnt.sc/nfbuMxzfFpHo

1 Like

@DelightCart how can i center the collection page title ?

1 Like
h1.collection-hero__title {
    text-align: center !important;
}

@varvara123
Add this code in the bottom of the component-collection-hero.css file

1 Like

@varvara123 Please add this css.

h1.collection-hero__title {
    text-align: center !important;
}
1 Like