Hey Guys, I wanted to make the headings smaller like on the screenshot but couldn’t figure it out. It would be great if anyone could help me solving this issue.
This is my shop now:
That’s the reference:
A user seeks help reducing heading sizes on product pages using the Focal theme. Two solutions are provided:
Solution 1 (Moeed):
</body> tagSolution 2 (Made4uo-Ribe):
.h3.heading.h3 with font-size: 25px !important (adjustable from current 32px)Both responders request the original poster mark their answer as the solution if helpful. The issue appears solvable through custom CSS modifications, though the original post text displays formatting issues.
Hey Guys, I wanted to make the headings smaller like on the screenshot but couldn’t figure it out. It would be great if anyone could help me solving this issue.
This is my shop now:
That’s the reference:
Hey @MS-Ecom2024
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
Add the following code in the bottom of the file above tag
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hi @MS-Ecom2024
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:
@media only screen and (min-width: 740px){
h3.heading.h3 {
font-size: 25px !important;
}
}
And Save.
Result:
I cant find the reference, so I can check the size. But you can always change the size you like the current size is 32px and I used 25px.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!