Is it possible to change styles of a div that resides inside an iframe on the page using CSS only?
|
feedback
|
|
In short, no. You can not apply CSS to HTML that is loaded in an iframe, unless you have control over the page loaded in the iframe. | |||
|
feedback
|
|
You need JavaScript. It is the same as doing it in the parent page, except you must prefix your JavaScript command with the name of the iframe. Remember, the same origin policy applies, so you can only do this to iframe is coming from your own server. I use the Prototype framework to make it easier:
or
| |||||||
feedback
|
|
probably not the way you are thinking. the iframe would have to | |||
feedback
|
|
The quick answer is: No, sorry. It's not possible using just CSS. You basically need to have control over the iframe content in order to style it. There are methods using javascript or your web language of choice (which I've read a little about, but am not to familiar with myself) to insert some needed styles dynamically, but you would need direct control over the iframe content, which it sounds like you do not have. | |||
|
feedback
|
|
Yes. Take a look at this other thread for details: How to apply CSS to iFrame?
| |||||
|
feedback
|
|
Actually, you can use tags in the html that feeds your iframe, if you can edit it. In the HTML file that I'm calling up I could use something like this:
It may be a bit redundant with your main style sheets, but it works. | |||
|
feedback
|