My product page H1, H2, H3 headers are so big and I want to reduce the size of it and in sentence case. Currently its on upper case. I want smaller size in both mobile and laptop.
Please refer
A user seeks to reduce the size of H1, H2, and H3 headers on their product pages and change the text from uppercase to sentence case, affecting both mobile and desktop views.
Two CSS solutions were provided:
Solution 1 (Made4uo-Ribe):
.page-content.page-content--product headerstext-transform: lowercase for paragraph textSolution 2 (DaisyVo):
!important flagstext-transform: capitalize for sentence case formattingBoth solutions provide working code snippets with adjustable font sizes. The second approach offers easier implementation through the theme customizer interface rather than direct code editing.
My product page H1, H2, H3 headers are so big and I want to reduce the size of it and in sentence case. Currently its on upper case. I want smaller size in both mobile and laptop.
Please refer
Hi @kamal03
Try this one.
.page-content.page-content--product h1 {
font-size: 32px;
}
.page-content.page-content--product h2 {
font-size: 28px;
}
.page-content.page-content--product h3 {
font-size: 25px;
}
.page-content.page-content--product .rte p {
text-transform: lowercase;
}
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!
Hi @kamal03 ,
You can follow the steps here:
Step 1: Shopify admin > Online store > Customize: https://prnt.sc/XQ6IDB99kUCd
Step 2: From the left menu > Theme settings > Open Custom CSS: https://prnt.sc/ypQ7nly2wv27
Step 3: Copy the code below and paste it there
Here is the code for step 3:
.page-content.page-content--product h1 {
font-size: 20px !important;
text-transform: capitalize !important;
}
.page-content.page-content--product h2 {
font-size: 20px !important;
text-transform: capitalize !important;
}
.page-content.page-content--product h3 {
font-size: 20px !important;
text-transform: capitalize !important;
}
You can modify the size to match with the Heading 1, Heading 2, Heading 3.
Here is the result:
Best,
Daisy