bobrivers2003
Technical User
I have two divs in html that contain borderless iframes. One div is visible and the other is hidden. Although hidden you can still see the space that the hidden div occupies and i wish it to be "behind" the visible div like a pack of playing cards. The code below is what I currently have:
...
<div id=adminconsole style="VISIBILITY: visible;">
<iframe src="changeUser.php" width=835 height=380 frameborder="0"></iframe>
</div>
<div id=adminconsole style="VISIBILITY: hidden;">
<iframe src="newUserForm.php" width=835 height=380 frameborder="0"></iframe>
</div>
...
Thanks and Regards
...
<div id=adminconsole style="VISIBILITY: visible;">
<iframe src="changeUser.php" width=835 height=380 frameborder="0"></iframe>
</div>
<div id=adminconsole style="VISIBILITY: hidden;">
<iframe src="newUserForm.php" width=835 height=380 frameborder="0"></iframe>
</div>
...
Thanks and Regards