vote up 11 vote down star
5

Hi,

I have simple page that has some iFrame sections (to display RSS links), how can I apply the same CSS format for the main page to the page displayed in the iFrame?

Thanks,

flag

7 Answers

vote up 8 vote down

An iframe is usually handled like a different html page by most browsers. If you want to apply the same stylesheet to the content of the iframe, just reference it from the pages used in there.

link|flag
1  
usually^h^h^h - universally – annakata Mar 5 at 16:36
vote up 5 vote down

If you control the page in the iframe, as hangy said, the easiest approach is to create a shared CSS file with common styles, then just link to it from your html pages.

Otherwise it is unlikely you will be able to dynamically change the style of a page from an external page in your iframe. This is because browsers have tightened the security on cross frame dom scripting due to possible misuse for spoofing and other hacks.

This tutorial may provide you with more information on scripting iframes in general. About cross frame scripting explains the security restrictions from the IE perspective.

link|flag
vote up 8 vote down

If the content of the iframe is not completely under your control or you want to access the content from different pages with different styles you could try manipulating it using JavaScript.

var frm = frames['frame'].document;
var otherhead = frm.getElementsByTagName("head")[0];
var link = frm.createElement("link");
link.setAttribute("rel", "stylesheet");
link.setAttribute("type", "text/css");
link.setAttribute("href", "style.css");
otherhead.appendChild(link);

Note that depending on what browser you use this might only work on pages served from the same domain.

link|flag
6  
Might be worth noting that the same origin policy will stop this working if the page is on a different domain. – ConroyP Oct 20 '08 at 9:00
vote up 5 vote down

There are two different things here: the style of the iframe block and the style of the page embedded in the iframe. You can set the style of the iframe block the usual way:

<iframe name='iframe1' id="iframe1" src="empty.htm" frameborder="0" border="0" cellspacing="0" style="border-style: none;width: 100%; height: 120px;"></iframe>

The style of the page embedded in the iframe must be either set by including it in the child page:

<link type="text/css" rel="Stylesheet" href="Style/simple.css" />

Or it can be loaded from the parent page with Javascript:

var cssLink = document.createElement("link") 
cssLink.href = "style.css"; 
cssLink .rel = "stylesheet"; 
cssLink .type = "text/css"; 
frames['frame1'].document.body.appendChild(cssLink);
link|flag
vote up -1 vote down

can you do this? ----

#YOURID iframe.YOURSTYLE {blah blah blah}

?? will that work !!

sorta like the preset codes "p, pre, h1,h2,h3,h4,em,i,...etc.etc." lol?

link|flag
vote up 2 vote down

You will not be able to style the contents of the iframe this way. My suggestion would be to use serverside scripting (PHP, ASP, or a perl script) or find an online service that will convert a feed to a javascript. the only other way to do it would be if you can do a serverside include.

link|flag
vote up 1 vote down

The above with a little change works:

var cssLink = document.createElement("link") 
    		cssLink.href = "pFstylesEditor.css"; 
    		cssLink .rel = "stylesheet"; 
    		cssLink .type = "text/css"; 

    		//Instead of this
    		//frames['frame1'].document.body.appendChild(cssLink);
//Do this

    		var doc=document.getElementById("edit").contentWindow.document 

    		///If you are doing any dynamic writing do that first
    		doc.open;
    		doc.write(myData);
    		doc.close();

    		//Then append child
doc.body.appendChild(cssLink);

Works fine with ff3 and ie8 at least

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.