How to make the contact page title "contact" smaller

Hey! I’m looing a way to make “Contact” look smaller in this page? How can I set it to 30px?

https://marymagdaleneshop.com/pages/contact

pass: deawiy

Hi @Carda

May I suggest to update code these steps:

  1. Go to Store Online-> theme → edit code

  1. layout/theme.liquid

  1. Add code below to bottom of file before tag
{% if request.path contains 'contact' %}
  
{%  endif  %}

Hello @Carda ;

Put this line in your css file -

#shopify-section-template–16949024620860__main > div > h1 {font-size: 30px;}

Set font size what you want. You can also change it from your theme customization (may be,depend on your theme)

Thank you