I want to change the font of this text " Embroidered t shirts " in the header of my website https://swawe.store/
and also decrease the height of it
Hello There,
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset > base.css and paste this at the bottom of the file:
.rich-text__blocks.center .rich-text__heading {
font-size: 25px;
}
dm me please
Go to online store ---------> themes --------------> actions ------> edit code------->base.CSS ----> line number 296
search this code
@media only screen and (min-width: 750px) {
h1,
.h1 {
font-size: calc(var(--font-heading-scale) * 4rem);
}
}
and replace with this code
@media only screen and (min-width: 750px) {
h1, .h1 {
font-size: 23px;
}
}
and the result will be
If this was helpful, hit the like button and mark the job as completed.
Thanks
how to change the font but
how to chnage the font of this text too
Go to online store ---------> themes --------------> actions ------> edit code------->base.CSS ----> line number 3553
search this code
.rich-text__blocks.center .rich-text__heading {
font-size: 13px;
}
and replace with this code
.rich-text__blocks.center .rich-text__heading {
font-size: 23px;
font-family: fantasy;
}
and the result will be
If this was helpful, hit the like button and mark the job as completed.
Thanks
I want to change the font to “satine” how to do it
the code i gave you earlier
.rich-text__blocks.center .rich-text__heading {
font-size: 23px;
font-family: fantasy;
}
replace with this code
.rich-text__blocks.center .rich-text__heading {
font-size: 23px;
font-family: satine;
}
thanks
it’s not getting changed
that is because you don’t have “Satine” added in your font family.
how to add
please check inbox



