in reply to Re^2: Image::Thumbnail work under windows but not on linux
in thread Image::Thumbnail work under windows but not on linux

As haukex wrote, the monospace font is set in your browser config. However, there is one setting here which may help. In Display Settings, in the Code Listing Settings there is an option "Large Code Font" which, if checked, will increase the font size of the code listings without changing the font face. That might be all you need?

  • Comment on Re^3: Image::Thumbnail work under windows but not on linux (code font)

Replies are listed 'Best First'.
Re^4: Image::Thumbnail work under windows but not on linux (code font)
by jcb (Parson) on Aug 15, 2019 at 22:29 UTC

    I tried the "Large Code Font" option, which does increase the font size, but I prefer the smaller code font.

    On a side note, all "Large Code Font" does is suppress a <font size="-1"> tag around the code block. If you prefer CSS, the text in large code blocks can be matched with tt.codetext and inline code text can be matched with tt.inlinecode. Since the <tt> tag overrides the font-family, matching the outer p.code is not useful here.

    Bizarrely, if you want to use CSS to customize this, you will need to check "Large Code Font" — otherwise the <font> tags will override your careful efforts.