I want to change the font of my product title only, in Dawn, but I can’t follow the directions from a discussion on this from 2021 I am brand new to Shopify, and am trying this on a Chromebook, but do not see where I should add the code suggested this in my set up. I accept that it’s a hole in my knowledge and was hoping someone could help.
This is BSS Commerce - Full-service eCommerce Agency. We’d love to suggest you this solution:
Because the title of your question is about changing product description, but the content is about changing product title, so I’m not sure what you really want, so you may consider the following steps:
Online store → Themes → Edit code
Find the base.css file:
If you want to edit the product description, add this code snippet to the end of the file and click Save:
//For all screens (include mobile and tablet)
.product__description{
font-size: 1.6rem !important;
font-family: "Josefin Sans", sans-serif !important; //your current font family
}
//For desktop + tablet
@media screen and (min-width: 750px){
.product__description{
font-size: 1.7rem !important;
}
}
Font size is the attribute that helps you adjust the size of the text, and font family is the attribute that helps display the font the way you want it to be. You can customize the values of these attributes to change the size as you wish.
Hope this helps you.
BSS Commerce - Shopify Apps & Development Services Provider
Thank you so much for your help! I apologize for the contradiction in the title & body of my message. I definitely meant product title as I felt the font I was using looked too puffy next to the font of the product description.