How can I center specific text on the Dawn theme?

Hello,

I modified the code to justify the text on my shopify : https://seasters.shop/

However, there is some texts I want to be centered for example here :

How can I modify this ?

Thank you !

Emma

Hello @emma-rosenthal

Paste the below CSS at the bottom of ‘base.css’ file.

@media (prefers-reduced-motion: no-preference) and (hover: hover) {
  .rte > p {
    text-align: unset !important;
  }
}

OUTPUT:

Thanks

Worked !

Thank you :slightly_smiling_face: