This is generally caused by a page that is loaded via https but references content via http. Make sure all content on the page loads with https. That includes all images, flash movies, css, javascript, etc.
A vastly underutilized feature of html that helps avoid this kind of thing is support for relative schemes on absolute urls. The way it works is something like this: Instead of:
<img src="http://example.com/images/logo.jpg alt="logo" />
do this:
<img src="//example.com/images/logo.jpg alt="logo" />
The second example will load the image with the same scheme as the containing page was loaded. Browser support for this feature is excellent. An example of a large site that leverages this feature heavily is SlashDot.org. View source on their homepage and you'll see many uses for all their CDN content.
http. I know you've said in your comments on my answer that all requests are made overhttps, but you must have missed something. Go back and check all the referenced content again. – Asaph Sep 1 '11 at 17:53