You're on the right track, but you have a lot of unnecessary CSS in there that's causing you problems.
First off, here is some code you should be using instead:
Code:
#portalWrapper {
padding-left:15px;
background-color:#FFF;
height:200px;
}
#test {
background:#000;
}
What I did was take out the positioning, the width, and the z-index. Unless you have a specific reason to have the positioning or the z-index in there, they're just cluttering up your code. The positioning also oftentimes clutters up your layout. I got rid of the width because the width for divs on browsers is automatically the width of the browser window. So that's not needed either. Try out that code, it outta work. If not, tell me.
- Steve
__________________
if($stevej == "helpful") { $talkupation += $user_power; }
|