Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IE8 Developer Tools not displaying Style info

I'm running into an issue with IE8 developer tools where they Style information is not displaying in the pane when I select an element. It is definitely page specific as I can switch to another page and the styles will appear for that page when I select an element.

Strangely, if I add an inline style to an element, the inline element will display in the style pane. The page finds the CSS files just fine since the page is rendering with the styles.

Anyone else encounter such a problem? If it helps, the page I'm developing is a Joomla template. I'm currently doing the process-of-elimination by deleting half the code, then the other half to identify the culprit code but I'd thought I'd throw this out to see if anyone else knows. Thanks everyone.

like image 965
Jude Avatar asked Sep 07 '10 17:09

Jude


2 Answers

I saw others mention similar problems in other forums and the common issue has to do with a link tag to an external stylesheet. In my case, it was a Google Fonts Directory link.

<link href='http://fonts.googleapis.com/css?family=Josefin+Sans+Std+Light' rel='stylesheet' type='text/css' />

Removing the link temporarily allowed to style information to display.

like image 97
Jude Avatar answered Oct 18 '22 09:10

Jude


I had a similar issue when a stylesheet had an include statement for another stylesheet that did not exist.

like image 35
Dimestore Cowboy Avatar answered Oct 18 '22 09:10

Dimestore Cowboy