We understand that recent changes to font sizes on mobile devices may not suit everyone. If you find the text too small on your TMail, you can easily adjust the font size by following these steps:
Log in to the Admin Panel:
Navigate to Admin Panel
→ Settings
→ Advanced
.
Add Custom CSS:
In the Global CSS section, insert the following code:
<style>
@media only screen and (min-width: 400px) and (max-width: 1024px) {
html {
font-size: 14px !important;
}
}
@media only screen and (max-width: 400px) {
html {
font-size: 12px !important;
}
}
</style>
14px is recommended for larger mobile screens and tablets.
12px is suitable for standard-sized mobile devices.
Adjust as Needed:
Feel free to modify the 14px
and 12px
values to better fit your needs.
This adjustment affects the base font size of the HTML element. Since we use Tailwind CSS, which applies relative font sizes, this change will affect all text elements proportionally.
If you have any questions or need further assistance, please reach out to our support team.