Search code examples
htmliframebackground-color

Change background color of iframe issue


I need to change background color to white of the displayed page if <iframe></iframe>. Is that possible? Now background of the original website is gray.

 <iframe allowtransparency="true" style="background-color: Snow;" src="http://zingaya.com/widget/9d043c064dc241068881f045f9d8c151" frameborder="0" height="184" width="100%">
    </iframe>

I want to change the background of loaded page


Solution

  • An <iframe> background can be changed like this:

    <iframe allowtransparency="true" style="background: #FFFFFF;" 
        src="http://zingaya.com/widget/9d043c064dc241068881f045f9d8c151" 
        frameborder="0" height="184" width="100%">
    </iframe>
    

    I don't think it's possible to change the background of the page that you have loaded in the iframe.