'How to increase the font size of the request in postman tool?
I am using Postman tool for hitting the REST api with request and response. I want to increase the font size of the request. Under Settings there seem to be just one option to increase the font size of the response but not for request.
How can the font size of the request be increased?
Solution 1:[1]
Use Ctrl + (key)
and =+
(key, near to Backspace button). Press all keys at the same time.
It's working.
Solution 2:[2]
Solution 3:[3]
The old postman app is just another webpage underneath it all, so use control +
For version 3, they've changed it to launch as a chrome desktop app. You can use a trick to open the developer tools, and change the fonts, or anything else, as you see fit. With Postman open, open a new tab in Chrome, and go to chrome://inspect/#apps. If Postman is open, you should see it listed in that page. Click the inspect link under it. Then you'll be able to inspect the elements whose fonts are too small, and change them. I believe it's just the input[type="text"].basic-text-input
CSS selector, where you'll want to disable/change the 1.3rem font-size rule.
Solution 4:[4]
You can use the Settings > UI size option to change the font size of the interface.
Solution 5:[5]
The reason you can't zoom with ctrl++
is that you are probably using the plus key in the numpad section of your keyboard. You need to use the plus key next to backspace key.
Solution 6:[6]
Click Ctrl + + to increase the font size of postman.
Solution 7:[7]
Solution 8:[8]
Solution 9:[9]
If you install postman launcher, you will have a real web page like this:
You could change everything you want.
Solution 10:[10]
None of the answers here worked for changing the UI font size in the version of Postman that I have, 4.7.0. This is quick and dirty but it worked:
- Open
~\AppData\Local\Google\Chrome\User Data\Default\Extensions\fhbjgbiflinjbdggehcddcbncdddomop\4.7.0_0\js\requester.js
. - Replace all
font: 12px
withfont: 1.25rem
(or your REMs of choice). - Save and restart Postman.
Solution 11:[11]
To improve the font size forever, you just open the file "4.7.2_0/html/requester.html" with your text editor and add this code at the end of the file before the close of the tag </body>
In my case: C:\Users\Stepan\AppData\Local\Google\Chrome\User Data\Default\Extensions\fhbjgbiflinjbdggehcddcbncdddomop\4.7.2_0
<style> .editor.ace_editor { font-size: 18px !important; } </style>
Reopen the app/extension and enjoy :P
Solution 12:[12]
- Click on File
- Go to Settings
- There's a section for User Interface
- Change the "Editor Font Size(px) to whatever value you want. I use 14. Seems big enough. Postman Settings Image
Solution 13:[13]
Top menu of Postman window: View ? Zoom In / Zoom Out scales down the UI.
Solution 14:[14]
Go to C:\Users[User]\AppData\Local\Google\Chrome\User Data\Default\Extensions\fhbjgbiflinjbdggehcddcbncdddomop\3.2.8_0\css\requester, look for the style are you using in Postman, example "style.dark.css" and changue to 1.4rem:
#body, #code-data {
font-family: "PTMono", Consolas, Courier, monospace, sans-serif;
font-size: 1.2rem; // change to 1.4rem }
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow