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,
|
5
|
|
|
|
|
|
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. |
||||
|
|
|
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. |
||
|
|
|
|
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. |
||||
|
|
|
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:
|
||
|
|
|
|
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? |
||
|
|
|
|
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. |
||
|
|
|
|
The above with a little change works:
Works fine with ff3 and ie8 at least |
||
|
|