Windshield Report: No CSS or Missing Images
Is your webpage inside the CrazyEgg report showing without any styling or with missing images?
There are a number of reasons why this could happen.
BASE tag in the wrong place
This problem is sometimes caused by your BASE tag being below your LINK tags in the HEAD of your page.
The BASE tag tells the browser where to assume the relative links on the page are pointing, but browsers only apply the BASE tag to the urls after the BASE tag.
So, all you have to do to fix the problem is to move your BASE tag to the very top child element of your HEAD.
<head> <base href="http://www.yourwebpage.com/"/> <link rel='stylesheet' href='/style.css' media='screen' type='text/css'/>
Internet Explorer, anything before the <html> tag
In Internet Exporer 7, if you have any code before the opening HTML tag on your page it can cause the BASE tag on the page to be ignored, causing CSS and image urls to use the wrong domain.
If you simply remove the code before the opening <HTML> tag or move it into the body section of your page it will fix this IE7 bug.