Sign in

Fonts in the new Editor 2 Theme

  • This topic has 1 reply, 2 voices, and was last updated 3 years, 2 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #4003
    Avatar photoworf1155

    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.

     

     

    --
    Do you appreciate the support you've received today? If so, consider donating to the Publii team by clicking here; we'll be sure to use your donation to make Publii even better!

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