How to make font size on all my product descriptions match

Solved
Aiturtle
Excursionist
18 0 4

Font sizes.pngHey guys, I've noticed that different products have different font sizes for their product descriptions and I can't figure out how to make it so all the descriptions use the same font size. I've attached a screenshot to show this but my store URL is https://www.alpinetails.com/ and password is Delah11. Editing the products with text pasted from word doesn't make a difference. Thank you in advance for any help.

Accepted Solutions (2)
AliReviews
Shopify Partner
586 67 307

This is an accepted solution.

Hello @Aiturtle 

 

Sorry for misunderstanding, you can try this code instead:

  • Repeat the step 1 I provided above 
  • Go to Assets file -> Add a new asset -> Select "CSS" from the dropdown menu and name the new file something like "custom.css".
  • Add this following code:
.product-single__description {
  font-family: "Your Font Name", sans-serif;
}
  • Replace "Your Font Name" with the name of the font you want to use for your product descriptions. You can also change "sans-serif" to a different font fallback if you prefer.
  • Save and preview.

Let us know if you need anything else.

Ali Reviews team.

- Was my answer helpful? Please hit Like or Mark it as solution!
- AliReviews - The must-have Shopify app that empowers you to effortlessly collect, display, and manage product reviews.
- Start your FREE trial today!

View solution in original post

made4Uo
Shopify Partner
3284 620 935

This is an accepted solution.

Hi @Aiturtle,

 

It seems like your font was styled when you entered the product description. See image below. 

 

You have two options.

1. Try to fix the font inside the product description in your admin page.

2. Try the code below

 

 

1. From your Admin page, go to Online store > Themes > Click the three dots > Edit code
2. Find the Asset folder, and open the base.css
3. Add the code below at the very end of the file

.product__description span {
    font-family: Akko, sans-serif !important;
    font-size: 1rem !important;
}

 

We are volunteering to help    |      Likes and Accept as Solution  will be much appreciated.✌
Having trouble?  Hire us! For fast reply, shoot us a message using chat at Made4Uo.com

Check how to sell everywhere with Shopify POS. Keep your stuffs private. Refrain from giving unnecessary access to your store.

View solution in original post

Replies 9 (9)
made4Uo
Shopify Partner
3284 620 935

Hi @Aiturtle,

 

As I can see, it is not different font sizes, but different font

We are volunteering to help    |      Likes and Accept as Solution  will be much appreciated.✌
Having trouble?  Hire us! For fast reply, shoot us a message using chat at Made4Uo.com

Check how to sell everywhere with Shopify POS. Keep your stuffs private. Refrain from giving unnecessary access to your store.
Aiturtle
Excursionist
18 0 4

Oh really? Yes actually on closer inspection I see what you mean. Any idea how I can make the font the same? Thank you

made4Uo
Shopify Partner
3284 620 935

Hi @Aiturtle,

 

Depending on which font do you prefer?

We are volunteering to help    |      Likes and Accept as Solution  will be much appreciated.✌
Having trouble?  Hire us! For fast reply, shoot us a message using chat at Made4Uo.com

Check how to sell everywhere with Shopify POS. Keep your stuffs private. Refrain from giving unnecessary access to your store.
Aiturtle
Excursionist
18 0 4

I'm actually not sure which font is which but I prefer the one on the right. I checked theme settings and I have the font as 'Akko'. So I think thats what I'll go with. I'm not sure why that font hasn't applied to all my product descriptions if that's what is set up in the theme settings

AliReviews
Shopify Partner
586 67 307

Hello @Aiturtle ,

 

You can try to take these steps:

  • Go to Online Store -> Theme -> Actions -> Edit Code

Ref- step 1.png

  • Go to Layout -> theme.liquid -> add the following code at the bottom of page:
.product__description {
  font-size: 16px;
  font-family: "Helvetica Neue", sans-serif;
}

 

Note that you can change the font to any font that you want . 

 

Hope this can work.

Ali Reviews team.

- Was my answer helpful? Please hit Like or Mark it as solution!
- AliReviews - The must-have Shopify app that empowers you to effortlessly collect, display, and manage product reviews.
- Start your FREE trial today!
Aiturtle
Excursionist
18 0 4

Hey there,

 

Thanks for that but unforunately that didn't make a difference, the fonts are still the same as what I screenshotted. Not too sure what's going on or why I can't change them

AliReviews
Shopify Partner
586 67 307

This is an accepted solution.

Hello @Aiturtle 

 

Sorry for misunderstanding, you can try this code instead:

  • Repeat the step 1 I provided above 
  • Go to Assets file -> Add a new asset -> Select "CSS" from the dropdown menu and name the new file something like "custom.css".
  • Add this following code:
.product-single__description {
  font-family: "Your Font Name", sans-serif;
}
  • Replace "Your Font Name" with the name of the font you want to use for your product descriptions. You can also change "sans-serif" to a different font fallback if you prefer.
  • Save and preview.

Let us know if you need anything else.

Ali Reviews team.

- Was my answer helpful? Please hit Like or Mark it as solution!
- AliReviews - The must-have Shopify app that empowers you to effortlessly collect, display, and manage product reviews.
- Start your FREE trial today!
made4Uo
Shopify Partner
3284 620 935

This is an accepted solution.

Hi @Aiturtle,

 

It seems like your font was styled when you entered the product description. See image below. 

 

You have two options.

1. Try to fix the font inside the product description in your admin page.

2. Try the code below

 

 

1. From your Admin page, go to Online store > Themes > Click the three dots > Edit code
2. Find the Asset folder, and open the base.css
3. Add the code below at the very end of the file

.product__description span {
    font-family: Akko, sans-serif !important;
    font-size: 1rem !important;
}

 

We are volunteering to help    |      Likes and Accept as Solution  will be much appreciated.✌
Having trouble?  Hire us! For fast reply, shoot us a message using chat at Made4Uo.com

Check how to sell everywhere with Shopify POS. Keep your stuffs private. Refrain from giving unnecessary access to your store.
Aiturtle
Excursionist
18 0 4

Thank you!