Hey guys,
Hoping you could help, I wanna make the text in the screenshot larger on desktop. But keep it the same size on mobile.
Url - www.phreshcareco.com.au
Any help you be greatly appreciated.
A user wants to increase text size on desktop while keeping mobile sizing unchanged for their Shopify store (phreshcareco.com.au).
Solutions Provided:
CSS in theme.liquid: Add custom CSS code above the </body> tag in the theme.liquid file with media queries targeting desktop screens.
Custom CSS section: Use a media query @media (min-width: 990px) to apply font-size: 120px to h2 elements only on desktop.
Both approaches use CSS media queries to selectively apply larger font sizes based on screen width, ensuring mobile displays remain unaffected. The discussion appears resolved with working solutions provided.
Hey guys,
Hoping you could help, I wanna make the text in the screenshot larger on desktop. But keep it the same size on mobile.
Url - www.phreshcareco.com.au
Any help you be greatly appreciated.
Hey @Phreshcareco
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
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
You can do that by adding this code to Custom CSS of that section
@media (min-width: 990px) {
h2 { font-size: 120px; }
}