Osclass Support Forums

Osclass theme support => Free themes => Topic started by: Ahmed Abdelhamed on September 27, 2021, 11:32:44 PM

Title: how to increase size of font in mobile
Post 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
Title: Re: how to increase size of font in mobile
Post by: MB Themes on September 28, 2021, 03:26:43 PM
@Ahmed Abdelhamed
Most probably via CSS.
If you want to target just mobile devices, use media queries.
Code: [Select]
@media screen and (max-width: 767px) {
  body {font-size:18px;line-height:22px;}
}