Forum Moderators: not2easy
Here is my code:
#linkList {
position: absolute;
margin: 0px 0px 0px 25px;
top: 225px;
width: 242px;
z-index: 1;
}
I know something is probobly wrong but I don't know what it might be. Why can't all browsers get along? Someone give me a clue!
#container {
background: transparent url(images/theme2.jpg) no-repeat top center;
margin: 0px;
padding: 0px;
width: 852px;
text-align: left;
height: 900px;
}
Absolutely position elements must be inside of positioned elements (absolute or relative), otherwise their offset is determined by the next container out (frequently the HTML tag).
So, if you add position:relative to the #container div, it should allow the absolutely positioned menu to position properly.
<self-edit>just noticed that Doc already told you this. :) </self-edit>