font of the titles on the policy pages

Topic summary

A user seeks to customize policy page titles (terms of service, shipping policy, etc.) by reducing font size and making text bold.

Solution Provided:
Another participant shares CSS code to add under “Custom CSS” settings:

.shopify-policy__title {
  font-weight: bold !important;
}

Follow-up Issue:
The original poster confirms the bold styling works but reports that adding font-size: 5px !important; only changes boldness, not the actual font size.

The discussion remains open with the font-size adjustment issue unresolved.

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

Hi,

we are trying to customise the font of the titles on the policy pages.

We would like to decrease font size and make font style “bold”

For all of them. terms of service, shipping policy etc.

Can anyone help?

Thanks in advance!

Update der Medien

store url: www.mism.store

Thanks in advance!

Best,

team-mism

@monomgroup ihr könnte in den Einstellungen unter “Benutzerdefinierte CSS” folgendes eintragen:

.shopify-policy__title{
font-weight:bold!important;
}

/* oder */

.shopify-policy__title{
font-weight:700!important;
}

thanks. Can I also decrease font size?

if i do

.shopify-policy__title{
font-weight:bold!important;
font-size: 5px !important;
}

its only changing boldness.