I have seen that the title header of my website does not format well on mobile, how can I make it so it decreases the font size of this once screen width is below a certain thresh-hold?
Thank you
I have seen that the title header of my website does not format well on mobile, how can I make it so it decreases the font size of this once screen width is below a certain thresh-hold?
Thank you
Hey @lukafernada
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
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hi @lukafernada
This is Richard from PageFly - Shopify Page Builder App
Please add this code to your theme.liquid above the to get this solved
Step 1: Online Stores > Themes > More Actions > Edit code
Step 2: click on theme.liquid and paste the code above the
Hope this can help you solve the issue
Best regards,
Richard | PageFly
Please add this code to Custom CSS in Online Store > Themes > Customize > Theme settings
@media (max-width: 340px) {
.header__heading-link .h2 { font-size: 24px !important; }
}
Hello @lukafernada
@media(max-width: 767px) {
.header__heading-link .h2 {
font-size: 24px;
}
}