Support Forums - Classified Ads Script Osclass
Osclass theme support => Free themes => Topic started by: Ahmed Abdelhamed on September 27, 2021, 11:32:44 PM
-
how to increase size of font in mobile only i am using dreamfree theme thanks in advanced
-
@Ahmed Abdelhamed
Most probably via CSS.
If you want to target just mobile devices, use media queries.
@media screen and (max-width: 767px) {
body {font-size:18px;line-height:22px;}
}