How to center and resize main title on a webpage?

Hello

I would like to center the main title “contact us” and change the font size to 40px

Website : spoown.com

Thank you

HI @Tiagiinho ,

Do you mind sharing your website with the contact us link so we can provide a code specific for you? Thank you

My bad.. https://www.spoown.com

Thank you

Change

# 
    Contact Us

And make the h0 class into h1 so that it becomes

# 
    Contact Us

Hi @Tiagiinho

Thank you for providing the website, please follow the instructions below

  1. From your Admin Page, click Online Store > Themes >Actions > Edit code
  2. In the Asset folder, open the base.css
  3. Paste the code below at the very bottom of the file.
#shopify-section-template--15304733065372__main > div > h1 {
    margin: 0 auto 4rem;
    width: max-content;
    font-size: 40px;
}

Thanks :wink: