How to center, resize, and change color of a product title in Dawn theme?

How can I center, resize, and change the color of the product title

Hello @mountainsap

This is Amelia at PageFly - Shopify Advanced Page Builder app.

You can try the following steps I have provided to help you solve the problem you are facing:

Step 1: Online Stores > Themes > Edit code

Step 2: Choose file base.css

Step 3: Add code

.product__title h1 {
   align-item: center;
   color: #yourcolor;
   font-size: #yourfontsize;
}

Hoping my solution helps you solve your problem.

Best regards,

Amelia | PageFly

Show More
1 Like

Hi @mountainsap ,

Follow these Steps:

  1. Go to Online Store
  2. Edit Code
  3. Find base.css file
  4. Add the following code at the end of the file

Result:

If you require further help to optimize your store, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!

Best Regards,
LuffyOnePiece

Hello @mountainsap

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.product__title h1 { font-size: 32px !important; /*adjust according to you*/ color: #1385e9 !important; /*paste the color code you want*/ text-align: center !important; }

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

1 Like

Thank you!!!

It’s now working