Hi,
i want to maintain 14px on Desktop and 12px on mobile. Is that possible?
Website: https://commoncelebrity.com/
Hi,
i want to maintain 14px on Desktop and 12px on mobile. Is that possible?
Website: https://commoncelebrity.com/
Hello commoncelebrity,
I hope you are doing well today.
That should be possible. The desktop version is already using 14px. This CSS can let you set the mobile to 12px:
@media only screen and (max-width: 900px) {
body * {
font-size: 14px;
}
}
Best Regards,
Support