Download
We're evolving to serve you better! This current forum has transitioned to read-only mode. For new discussions, support, and engagement, we've moved to GitHub Discussions.

Fonts in the new Editor 2 Theme

  • #4003
    Avatar photo[anonymous]

    Hi,

    does anybody know how to make the Fonts bigger in the new Editor 2Theme? The text in that Theme is very small. I would like to make it a bit larger,

    Thank you

    #4004
    Avatar photoBob

    Add the following CSS rules to your site via the Custom CSS tool and edit the font-size value:

    body,
    input,
    select,
    textarea {
     font-size:13pt;
    }
    @media screen and (max-width:1680px) {
     body,
     input,
     select,
     textarea {
      font-size:11pt
     }
    }
    @media screen and (max-width:1280px) {
     body,
     input,
     select,
     textarea {
      font-size:10pt
     }
    }
    @media screen and (max-width:360px) {
     body,
     input,
     select,
     textarea {
      font-size:9pt
     }
    }

    Ps: I haven’t modified it because I want to leave the original project as it is.