Tomáš Zato
Tomáš Zato

Reputation: 53129

How can I disable HTML and CSS features in Firebug?

I'm using solely the Console and the Network panel. And quite frankly, Firefox' built-in HTML inspector is both, faster and less resource-intensive. I also guess analysis of HTML eats up most resources, so I'd really like to disable it in Firebug.

Can I do this?

Upvotes: 1

Views: 1082

Answers (1)

Sebastian Zartner
Sebastian Zartner

Reputation: 20095

The HTML and CSS panel can't be turned off completely, though they can be hidden via Firebug menu > Visible Panels > HTML/CSS.

Menu options to hide specific panels in Firebug

The most resource intensive parts in the HTML panel are highlighting and expanding changes, which can be turned off by unchecking the options Highlight Changes and Expand Changes.

*HTML* panel options

More resource hungry than the HTML panel is the Script panel in Firebug. So if you don't need it, you should turn it off:

*Enabled* option within *Script* panel options

Upvotes: 2

Related Questions