Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #559327

    Hi Team,

    How can i change the font size automatically as the screen size decrease from desktop to mobile?

    #559345

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.