Is it possible to change styles of a div that resides inside an iframe on the page using CSS only?
Apparently it can be done via jQuery:
$('iframe').load( function() { $('iframe').contents().find("head") .append($("")); });
https://stackoverflow.com/a/13959836/1625795