Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hi, i want to change the font size for my image banner on my mobile, as i think its too big. However, I like the size like that on the desktop version so how do i change it so that its smaller for mobile, but stays the same size on mobile.
Solved! Go to the solution
This is an accepted solution.
Hey @ads
Follow these Steps:
1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code in the bottom of the file above </body> tag
<style>
@media screen and (max-width: 767px) {
.banner__heading {
font-size: 20px !important;
}
.banner__text.rte.subtitle p {
font-size: 12px !important;
}
a.button.button--secondary {
font-size: 10px;
}
}
</style>
RESULT:
If I managed to help you then, don't forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hey @ads
I'm guessing you only wanna change the font size of Desktop then please share your store url and password if enabled.
Best Regards,
Moeed
no i want to change the font size on mobile, not desktop. store url is https://05ab08-9f.myshopify.com/ and password is mechaw
This is an accepted solution.
Hey @ads
Follow these Steps:
1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code in the bottom of the file above </body> tag
<style>
@media screen and (max-width: 767px) {
.banner__heading {
font-size: 20px !important;
}
.banner__text.rte.subtitle p {
font-size: 12px !important;
}
a.button.button--secondary {
font-size: 10px;
}
}
</style>
RESULT:
If I managed to help you then, don't forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hi @ads
Could you share your store URL so I can check?
- Helpful? Like & Accept solution!
- Ryviu - Product Reviews & QA app: Collect customer reviews, import reviews from AliExpress, Amazon, Etsy, Walmart, Dhgate and CSV.
- Lookfy Gallery: Lookbook Image - Gain customers with photo gallery, video & shoppable image.
- Reelfy‑Shoppable Videos+Reels: Create shoppable videos to engage customers and drive more sales.
- Enjoy 1 month of Shopify for $1. Sign up now.
Hi @ads
Try this one.
@media screen and (max-width: 749px) {
.banner__box.content-container .h1 {
font-size: 2.5rem;
}
.banner__text.rte.subtitle {
font-size: 1.3rem;
}
.banner__buttons a {
font-size: 1.2rem;
padding: 0 1rem;
}
}
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!