Hello everyone!
I need help with changing the size of the headline in “Rich text” section on mobile only. See image attached.
Thank you very much in advance!
Best regards!
Hello everyone!
I need help with changing the size of the headline in “Rich text” section on mobile only. See image attached.
Thank you very much in advance!
Best regards!
Hello @elevo123
Please provide url and password of your store.
@elevo123
If you provide the store url and password it will help the community people to give support fast. Also help you to save time. Can you please share those.
If you are expert in CSS in that case you need to select the heading selector with CSS then need to write media query for it like bellow.
@media screen and (max-width: 749px) {
.my_heading h1 {
font-size:20px!important;
}
}
Hi @elevo123 can you share store url?
How to Add This to Shopify Dawn Theme:
Alternative (Edit Theme CSS Directly):
@media screen and (max-width: 768px) {
h2.rich-text__heading.rte.inline-richtext.h1.scroll-trigger.animate--slide-in {
font-size: 32px;
}
}
It will solve your issues.
Thank you
Hi @elevo123
You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file base.css and add this code at the end of the file
media (max-width: 768px) {
h2.rich-text__heading.rte.inline-richtext.h1.scroll-trigger.animate--slide-in {
font-size: 25px !important;
}
}
Result
Best,
Daisy