If positioning something makes it go under something else, generally you need to set its z-index higher, ex:
Code:
<style type="text/css">
embed, object {
position:absolute;
top:150px;
left:500px;
z-index:10000;
}
</style>
I just used 10000 as a sort of overkill because I don't know what if any other z-index values are in use on the page. 1 would probably be fine as long as the z-index is the issue and the other item you want to cover has no z-index set for it.
There could be some other problem(s). The z-index is just the most likely reason for what you describe.
Bookmarks