jared-shepherd of Kaiden Web Managment
12/27/2018 - 11:59 PM

Add Custom CSS to an iFrame (Untested)

Found on Stack Overflow to put a custom style sheet in an iframe. Haven't tested it yet! https://stackoverflow.com/questions/217776/how-to-apply-css-to-iframe

var cssLink = document.createElement("link");
cssLink.href = "style.css"; 
cssLink.rel = "stylesheet"; 
cssLink.type = "text/css"; 
frames['iframe1'].document.head.appendChild(cssLink);