How to change the default font for firebug?

In Firebug, the default font is not very convenient for me, and I made changes to the menu options ...... → tools->, but this did not work.

+3
source share
3 answers

If you want to change only the font size, use the page about:configand change the setting extensions.firebug.textSizeor use the options Increase font sizeand Decrease font sizein firebug menu (menu and hot keys do not work in FF4 and Win7 on my laptop).

If you want to change the font families of user interface elements, you can change the firebug css files located in the extensions directory ( c:\Users\myusername\AppData\Roaming\Mozilla\Firefox\Profiles\nd21zknl.default\extensions\firebug@software.joehewitt.com.xpi\skin\classic\firebug.cssfor me).

+5
source

( Firebug...)

, , <FirefoxProfile>/chrome/userChrome.css ( , ):

#fbCommandArrow, .fbCommandLine, #fbCommandEditor {
    font-family: Consolas, monospace !important; /* default: monospace */
}
0

enter image description here

If you are using Firebug 1.11+, you can do this:

1) Open firebug@software.joehewitt.com.xpieither your .xpi file (extract) using the Winrar / Winzip archive program

2) Find the line font-family: monospace; in all .css files

3) Replace everything font-family: monospace;=>font-family: consolas, monospace !important;

4) Save the file, make it an archive (zip, rar), and then change its extension => .xpi

5) Restart Firefox.

0
source

All Articles