Hi, I would like to change the size of the product title on both collection and product grid because it’s very small.
I’m not a developer, I’ve already searched this forum, but it doesn’t work.
I already change the size of the parameter of the theme, it’s already at it’s maximum (I can’t make it bigger anymore).
I use the Sense theme.
image 1 : collection page
image 2 : product grid
Best regards,
Matthieu P.
1 Like
@BazarenCuisine
Please share your store url.
Hi @BazarenCuisine
Check this one.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.card__heading {
font-size: 20px;
}
And Save.
Result:
Hi @BazarenCuisine ,
I have reviewed your requirement, you just need to edit css script and the issue will be resolved. You can follow my instructions!
Step 1: Go to Admin → Online store → Theme > Edit code:
Step 2: Search for the file base.css. And add this code snippet to the end of the file.
.card__heading {
font-size: larger !important;
}
In this step, you can change font-size to make card heading text bigger.
In my example, I choose “font-size: larger”
Step 3: Save your code and reload this page.
=> The result will be:
I hope these instructions will help you. If they are helpful, please give us likes and mark as the solution.
Have a nice day sir!
Thanks for your rapidity and for fixing the problem.