Hi Team,
How can i change the font size automatically as the screen size decrease from desktop to mobile?
Hey David57!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
@media only screen and (max-width: 990px) {
h1 { font-size: 20px; }}
@media only screen and (max-width: 769px) {
h1 { font-size: 16px; }}
@media only screen and (max-width: 480px) {
h1 { font-size: 14px; }}
and adjust as needed
Regards,
Yigit