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?
feedback
|
protected by Josh Lee May 29 '11 at 15:23
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
|
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:
The style of the page embedded in the iframe must be either set by including it in the child page:
Or it can be loaded from the parent page with Javascript:
| |||||||||||||||||||||
feedback
|
|
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.
Note that depending on what browser you use this might only work on pages served from the same domain. | |||||
feedback
|
|
An iframe is universally 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. | |||||
feedback
|
|
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. | |||
|
feedback
|
|
The above with a little change works:
Works fine with ff3 and ie8 at least | |||||||
feedback
|
|
The following worked for me.
| |||||||||
feedback
|
|
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 JavaScript code. The only other way to do it would be if you can do a serverside include. | |||||
feedback
|
|
If you want to reuse CSS and JavaScript from the main page maybe you should consider replacing This is jQuery example that includes another html page into your document. This is much more SEO friendly than
You could also include jQuery directly from Google: http://code.google.com/apis/ajaxlibs/documentation/ - this means optional auto-inclusion of newer versions and some significant speed increase. Also, means that you have to trust them for delivering you just the jQuery ;) | |||
|
feedback
|
|
Well, I have followed these steps:
This works in IE 6. Should work in other browsers, do check! | |||||
feedback
|
|
When you say "doc.open()" it means you can write whatever HTML tag inside the iframe, so you should write all the basic tags for the HTML page and if you want to have a CSS link in your iframe head just write an iframe with CSS link in it. I give you an example:
| ||||
|
feedback
|