Hey all,
I'm having a problem building a menu using ul elements. The menu looks something like this:
Code:
<ul class="level0">
<li id="nav-1-1" class="level1"><span> Option1 </span>
<ul id="submenu" class="">
<li class="level2" first="" nav-2-2="">
<li class="level2" first="" nav-2-2="">
<li class="level2" first="" nav-2-2="">
</ul>
</li>
<li id="nav-1-1" class="level1"><span> Option2 </span>
<ul id="submenu" class="">
<li class="level2" first="" nav-2-2="">
<li class="level2" first="" nav-2-2="">
<li class="level2" first="" nav-2-2="">
</ul>
</li>
</ul>
I would like to position all of the inner ul elements (two in this case) to a specific place relative to outer ul element (for example top right corner of the outer ul) and not the li that contains them. Is this possible at all, without using the
position: fixed ?Any help is greatly appreciated!