how to increate web console font size?
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
Chosen solution
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 👍 1All Replies (2)
Chosen Solution
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; } }
Modified