How to Find and Fix Mixed Content Warnings in 2026
Mixed content occurs when an HTTPS page loads resources (images, scripts, stylesheets, iframes, API calls) over HTTP. Browsers either block these resources entirely (active mixed content) or load them with a warning (passive mixed content). Both cause Chrome to remove the padlock icon, replacing it with a warning triangle. In Chrome 94+, active mixed content is blocked by default — your JavaScript and CSS will simply fail to load.
Redirect Checker
Trace your redirect chain to ensure all hops go through HTTPS cleanly.
Try It Free →Step 1: Find Mixed Content with Chrome DevTools
How to open Chrome DevTools Console: Press F12 → click "Console" tab
Each Console warning shows the exact URL causing the issue. Write them all down before fixing.
Step 2: Scan for Mixed Content Programmatically
For sites with many pages, manual DevTools inspection doesn't scale. Use these methods to find all mixed content sources: