x

Re: Custom Font - Mobile View

You probably need to duplicate and update your CSS rules using a media query, so they get applied on smaller screens.

Say you have this normally:

<style>

.content {  /* your font css code */  }

</style>

Then you'll need to add something like this and update any classes/ids if they are different on mobile:

<style>

@media screen and (min-width: 480px) {
    .content {
       /* font code */
    }
}

</style>
618 Views
Message 1 of 2
Report
1 REPLY 1

Thanks for the tip, BJ!

532 Views
Message 2 of 2
Report