Search Support

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?

  • 2 பதிலளிப்புகள்
  • 5 இந்த பிரச்னைகள் உள்ளது
  • 55 views
  • Last reply by harpreet Singh Bhatia

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)

தீர்வு தேர்ந்தெடுக்கப்பட்டது

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.

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;
}
}

cor-el மூலமாக திருத்தப்பட்டது