How do I hide the annoying yellow box that appears under html fields when I hover over elements in the Chrome "Developer Tools" elements panel - it's driving me nuts as I can't see the bottom of my labels etc...

See example image

link|improve this question

This is one is terribly annoying indeed – MeLight Mar 10 '11 at 11:03
@MeLight - yeah it sure is - it's ok most of the time but when you're trying to sort out css margins etc it can be a real pain. – Rob Mar 10 '11 at 11:14
You can't hide it, file a bug on crbug.com and get people to star it. – Kinlan May 16 '11 at 10:22
here's the bug report code.google.com/p/chromium/issues/detail?id=89510 – sprugman Jul 16 '11 at 15:18
feedback

2 Answers

up vote 2 down vote accepted

You might want to check Chrome 16 which got an improved element tooltip. Please comment on the bug http://code.google.com/p/chromium/issues/detail?id=89510 and mention specific issues that you want to get fixed.

link|improve this answer
feedback

You can pretty easily tweak devtools yourself. Basically, follow these instructions to get started: http://code.google.com/chrome/devtools/docs/contributing.html

Then, inside inspector.js, tweak WebInspector.highlightDOMNode, by applying this small patch.

1150,1151c1150
<     // Do not highlight the DOM node.
<     //this.highlightDOMNodeForTwoSeconds(nodeId);
---
>     this.highlightDOMNodeForTwoSeconds(nodeId);

Fore more info, check out this post on extending Chrome DevTools.

link|improve this answer
2  
Thank you for sharing your article but it doesn't answer the question here. Can you be more specific on how to solve the problem? – Chaker Nakhli Jul 21 '11 at 9:14
The last paragraph of it's article contain a step by step explanation on how to remove this particular problem. @boris could you copy at least a summary or the relevant part of your blog post here ? (For a debate on Meta on copying versus linking to blog answers, see meta.stackoverflow.com/questions/20531/… ) – VirtualBlackFox Jul 27 '11 at 12:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.