ابحث في الدعم

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

how to increate web console font size?

more options

i was able to edit font of marup view etc via stylish addon here is the code @namespace url(http://www.w3.org/1999/xhtml); @-moz-document url("chrome://browser/content/devtools/markup-view.xhtml"), url("chrome://browser/content/devtools/cssruleview.xhtml"), url("chrome://browser/content/devtools/computedview.xhtml"), url("chrome://browser/content/devtools/fontinspector/font-inspector.xhtml") {

  • {
   font-size:12px;
   font-family:'consolas';

}

i could not font the url for the web console to change its font.

pleae help

i was able to edit font of marup view etc via stylish addon here is the code @namespace url(http://www.w3.org/1999/xhtml); @-moz-document url("chrome://browser/content/devtools/markup-view.xhtml"), url("chrome://browser/content/devtools/cssruleview.xhtml"), url("chrome://browser/content/devtools/computedview.xhtml"), url("chrome://browser/content/devtools/fontinspector/font-inspector.xhtml") { * { font-size:12px; font-family:'consolas'; } i could not font the url for the web console to change its font. pleae help

الحل المُختار

The URL for the web console (src of iframe) is:

chrome://browser/content/devtools/webconsole.xul

However, I don't know whether it can be styled as part of the HTML namespace.

Read this answer in context 👍 1

All Replies (2)

more options

الحل المُختار

The URL for the web console (src of iframe) is:

chrome://browser/content/devtools/webconsole.xul

However, I don't know whether it can be styled as part of the HTML namespace.

more options

works perfectly

@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url("chrome://browser/content/devtools/markup-view.xhtml"),
url("chrome://browser/content/devtools/cssruleview.xhtml"),
url("chrome://browser/content/devtools/computedview.xhtml"),
url("chrome://browser/content/devtools/fontinspector/font-inspector.xhtml"),
url("chrome://browser/content/devtools/webconsole.xul") {

* {
    font-size:12px !important;
    font-family:'consolas' !important;
}
}

Modified by cor-el