How do I decrease main page title font size across all pages and policy links so every title on my store is the same font size?
I Would like the font size to be the same as " Recent Release" on my main page.
I have tried using accepted solutions from past threads but none seem to work for me.
Thanks!
URL - pre-face.com
Password - hairso
Hello @Pre-face4000
Go to online store ----> themes ----> actions ----> edit code ----> base.css
add this code at the end of the file and save.
.header__heading-logo {
max-width: 80%;
}
result
If this was helpful, hit the like button and accept the solution.
Thanks
Hey, Rahul
thanks for the quick reply.
This didn’t work for me. I would like all other page titles to be the same as the image you sent.
Thank you!
.header__heading-logo {
max-width: 80%;
}
hey @Pre-face4000
first open the shopify admin page then go to online store then open the customization and then you can see the top of the right side defualt pages option just open it then you can see collection pages simple open the collection pages and find the main collection section and the open it and place the code in custom css and then your problem is solved
if this code work please do not forget to like and mark it solution
Go to online store ----> themes ----> actions ----> edit code ----> base.css
add this code at the end of the file and save.
@media only screen and (min-width: 750px) {
h1, .h1 {
font-size: calc(var(--font-heading-scale) * 2.4rem);
}
}
result
Thanks
hey @GTLOfficial
Thanks for that!
Im still having some problems…
This worked for policy links and collection pages but did not work for any of the pages in my footer menu such as contact, sizing & authentication or my “about” page
Go to online store ----> themes ----> actions ----> edit code ----> base.css
add this code at the end of the file and save.
@media only screen and (min-width: 750px) {
.h0 {
font-size: calc(var(--font-heading-scale) * 2.4rem);
}
}
result
Thanks
Hi @Pre-face4000
Go to Online Store > Themes > Customize. Click Theme settings (bottom left) > Typography and check if there’s an option to adjust heading sizes. If not, follow the next steps. Go to Edit Code (under “Actions” in Themes). Open base.css or theme.css (depending on your theme version).
Add this code at the bottom:
h1, .page-title {
font-size: 24px !important; /* Adjust size as needed */
}