your navigation only has 1 level.. position: relative just tells the browser how to handle the additional position elements... eg.. top, bottom, left, right ??
if you wish the "sub-menu" to be entirely right of previous menu element,
Code:
element {
position: relative;
left: 100%;
}
where element is the sub-menu.
left:100% tells the browser to push the new element (sub-menu) 100% to the left of the current element being hovered over.
as I stated before you need to do some javascript to get this working in IE6, so please refer to the other post about this, and for future questions just post a reply here, dont start a new thread
Bookmarks