All things Shopify and commerce
I use a combination of “Roboto” for headings and “Open Sans” for body text on my Shopify store. While the fonts look clean and modern, some customers have mentioned that the text size feels too small, especially on mobile devices. Additionally, the contrast between the font color (dark gray) and background (light gray) may not be strong enough for easy readability.
How can I adjust my typography choices to improve readability and user experience? Should I increase font sizes, switch to bolder colors, or use a single font throughout the site for consistency?
Appreciate for some one can assist me with some code
Solved! Go to the solution
This is an accepted solution.
It sounds like you're aiming for a clean, modern look with your Shopify store’s typography, but a few customers have pointed out that readability might be an issue, especially on mobile. This is a common challenge—while Roboto and Open Sans are excellent choices for clarity, font size, color contrast, and spacing can significantly impact the overall user experience.
You can apply these adjustments by adding custom CSS to your Shopify theme. Here’s how:
/* Improve font size and line height */
body {
font-size: 17px; /* Adjust for better readability */
line-height: 1.6;
color: #222; /* Darker text color for better contrast */
font-family: "Open Sans", sans-serif;
}
/* Adjust headings for better readability */
h1, h2, h3 {
font-family: "Roboto", sans-serif;
line-height: 1.3;
color: #111; /* Slightly darker than body text */
}
/* Improve mobile readability */
@media (max-width: 768px) {
body {
font-size: 16px;
}
h1 {
font-size: 26px;
}
h2 {
font-size: 22px;
}
}
This CSS ensures your text is larger, more readable, and mobile-friendly while maintaining the clean aesthetic of your store.
Let me know if you need help tweaking the code further!
If you need any other assistance, feel free to reply and I will try my best to help.
Best regards,
Daisy
This is an accepted solution.
It sounds like you're aiming for a clean, modern look with your Shopify store’s typography, but a few customers have pointed out that readability might be an issue, especially on mobile. This is a common challenge—while Roboto and Open Sans are excellent choices for clarity, font size, color contrast, and spacing can significantly impact the overall user experience.
You can apply these adjustments by adding custom CSS to your Shopify theme. Here’s how:
/* Improve font size and line height */
body {
font-size: 17px; /* Adjust for better readability */
line-height: 1.6;
color: #222; /* Darker text color for better contrast */
font-family: "Open Sans", sans-serif;
}
/* Adjust headings for better readability */
h1, h2, h3 {
font-family: "Roboto", sans-serif;
line-height: 1.3;
color: #111; /* Slightly darker than body text */
}
/* Improve mobile readability */
@media (max-width: 768px) {
body {
font-size: 16px;
}
h1 {
font-size: 26px;
}
h2 {
font-size: 22px;
}
}
This CSS ensures your text is larger, more readable, and mobile-friendly while maintaining the clean aesthetic of your store.
Let me know if you need help tweaking the code further!
If you need any other assistance, feel free to reply and I will try my best to help.
Best regards,
Daisy
Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025Discover opportunities to improve SEO with new guidance available from Shopify’s growth...
By Jacqui May 1, 2025