Change header font size to be smaller in Ride theme

Solved

Change header font size to be smaller in Ride theme

Shumpei
Tourist
8 0 3

I was wondering if I could get help on reducing the font size for ALL main headings to be about 70% of the current size? I'm using the Ride theme and the website is www.100pinekitchen.com

 

Screenshot 2023-01-03 at 1.09.23 PM.png

Accepted Solutions (2)

GemPages
Shopify Partner
5625 1262 1281

This is an accepted solution.

Hello @Shumpei ,

 

It's GemPages support team and glad to support you today.

 

I would like to give you the recommendation to support you so kindly follow the steps below:

 

1. Go to Online Store > Theme > Edit code of your current theme

GemPages_0-1672797080251.png


2. Open your theme.liquid theme file


3. Paste the below code before </head>

<style>
h1.collection-hero__title {
    font-size: 3.5rem !important;
}
</style>

 

If you require any further information, feel free to contact me.

 

Best regards,
GemPages Support Team

GemPages - Build any high-converting store pages for any business


- If you find my reply helpful, please hit Like and Mark as Solution
- Get connected: App Store | Blog | Community | Help Center

View solution in original post

GemPages
Shopify Partner
5625 1262 1281

This is an accepted solution.

Hello @Shumpei ,

 

Thank you for your feedback.

 

About these blog pages, you could please try using this code

<style>
h2.title.h1 {
    font-size: 3.5rem !important;
}

.shopify-policy__title h1 {
    font-size: 3.5rem !important;
}
</style>

 

Best regards,
GemPages Support Team

GemPages - Build any high-converting store pages for any business


- If you find my reply helpful, please hit Like and Mark as Solution
- Get connected: App Store | Blog | Community | Help Center

View solution in original post

Replies 4 (4)

GemPages
Shopify Partner
5625 1262 1281

This is an accepted solution.

Hello @Shumpei ,

 

It's GemPages support team and glad to support you today.

 

I would like to give you the recommendation to support you so kindly follow the steps below:

 

1. Go to Online Store > Theme > Edit code of your current theme

GemPages_0-1672797080251.png


2. Open your theme.liquid theme file


3. Paste the below code before </head>

<style>
h1.collection-hero__title {
    font-size: 3.5rem !important;
}
</style>

 

If you require any further information, feel free to contact me.

 

Best regards,
GemPages Support Team

GemPages - Build any high-converting store pages for any business


- If you find my reply helpful, please hit Like and Mark as Solution
- Get connected: App Store | Blog | Community | Help Center
Shumpei
Tourist
8 0 3

@GemPages Thank you for the help! I knew your customer service for your app was great, but this really helps. One more thing, if I wanted to do the same thing for the following pages, how am I able to find the name of these?

 

GemPages
Shopify Partner
5625 1262 1281

This is an accepted solution.

Hello @Shumpei ,

 

Thank you for your feedback.

 

About these blog pages, you could please try using this code

<style>
h2.title.h1 {
    font-size: 3.5rem !important;
}

.shopify-policy__title h1 {
    font-size: 3.5rem !important;
}
</style>

 

Best regards,
GemPages Support Team

GemPages - Build any high-converting store pages for any business


- If you find my reply helpful, please hit Like and Mark as Solution
- Get connected: App Store | Blog | Community | Help Center
Shumpei
Tourist
8 0 3

@GemPages This is exactly what I was looking for. Thank you so much!!