I am trying to apply CSS style for content inside iframe, check this link http://jsfiddle.net/pPqGe/
JQuery
$(document).ready(function() { $('iframe').contents().find('h1').css('color','red'); });
HTML:
<iframe src="mysite" width="100%" height="100%" id="myframe"></iframe>
For the iframe source, I used the website live.
source share