I have a website which uses an iframe to load up the homepage content, this iframe is located within a DIV which I have tried to add a background to, however the background only spans the length of the content (written words, not the iframe length) and then the background of the DIV changes to the proper site background.
I'm kinda new at all this so I'm not sure if its even right xD
if you don't understand me the link is: http://www.habbonowfm.com/risingfm/index.html
#rightcolumn {
float: left;
background-repeat: repeat-y;
margin: 0px 0px 0px 0px;
padding: 5px;
width: 520px;
background-image: url(images/mainbackground.png);
}
<div id="rightcolumn">
<p><iframe name="main" id="main" src="home.html" width="510" frameborder="0" allowtransparency="yes" scrolling="no" target="main" height="427" ></iframe>
</p>
</div>