-2

i need to change my iframe background color like a facebook popup using blue and white. how can i configure that and is this possilble instead of using background image

here i have added the codes for your review

<div id="fb">
<div id="fb-close"></div>
<div id="fblike">
<div id="fbclose"></div>
<div class="eliminater"></div>
<iframe src="//www.facebook.com/plugins/likebox.php?href=<?php echo esc_url(get_option('fb_likeurl')); ?>&amp;width=402&amp;height=255&amp;colorscheme=light&amp;show_faces=true&amp;border_color=blue;&amp;stream=false&amp;header=false&amp;appId=329902783740649" scrolling="no" frameborder="1" style="border-width: medium medium 71px; border-style: none; border-color: blue; -moz-border-top-colors: none; -moz-border-right-colors: none; -moz-border-bottom-colors: none; -moz-border-left-colors: none; border-image: none; margin-top: -21px; width: 397px; height: 239px; margin-left: 8px;background-color:#fff;" allowTransparency="true"></iframe>
</div>
</div>

css files are here below

#fb {
display:block;
background-color:;
width:100%;
height:100%;
position:fixed;
top:0;
left:0;
z-index:99999;
}

#fb-close {
width:100%;
height:100%
}

#fblike {
background:white;
width:420px;
height:270px;
position:absolute;
top:50%;
left:50%;
margin:-135px 0 0 -210px;
}

#fbclose {
float:right;
cursor:pointer;
background:url(../images/fanclose.png) repeat;
height:15px;
padding:20px;
position:relative;
padding-right:40px;
margin-top:-20px;
margin-right:-22px;
}

.eliminater{
height:1px;
width:366px;
margin:0 auto;
background:#fff;
margin-top:16px;
position:relative;
margin-left:20px;
}
raj
  • 19
  • 1
  • 9
  • 2
    If you give me your password and username I can do it for you :)...Do you have a code to show us? We can find solutions here not reading minds.. – Che Jug Mar 23 '13 at 06:29
  • now u can view my code Che Jug – raj Mar 23 '13 at 07:36

1 Answers1

0

Try this i think this works fine.

var html = "<style>Background-image:(url:yoururl);</style>";

$("#frameID").contents().find("head").append(html);
Harshit Tailor
  • 3,261
  • 6
  • 27
  • 40