How can I align product title to the left on Dawn theme?

Topic summary

A user needed help aligning the product title to the left on a product page in the Dawn theme, specifically without affecting other titles.

Solution provided:

  • Add CSS targeting .product__info-container .product__title h1
  • This selector ensures only product page titles are affected, leaving other title elements unchanged

The issue was successfully resolved with this CSS customization approach.

Summarized with AI on November 25. AI used: claude-sonnet-4-5-20250929.

Hi all,

Is there a way to align the product title, on the product page, to the left. Without affecting other titles.

Thanks!

http://alata.pt

it looks like you added:

.product__info-container .product__title{

to the css on line 2971?

make it:

.product__info-container .product__title h1{

and that should work

Thank you so much!