ok and that will lift the inners as wel...

good thanks

should the z-index:100 be added to the css??

tibi

Matt Raible wrote:
The surrounding <ul> has an id and a class, so you can use both of
these as CSS selectors:

<ul id="primary-nav" class="menuList">

#primary-nav li {
   z-index:100;
}

or:

ul.menuList li {
   z-index:100;
}

Matt

On 6/19/07, tibi <[EMAIL PROTECTED]> wrote:

i'm using appfuse 2.0m4 with a left side fold out menu.

i noticed that the menu items  which fold out have a low z-index and
disappear behind a div.
i need to add
li{
z-index:100;
}
to fix this.

the sub menu's have no id or class tag so i can;t be more specific than 'li'

part code;

<li class="menubar">
<a href="javascript:void(0)" title="Annulation" style="width:
120px">Annulation</a>
<ul>
<li>
<a href="/annulation.html" title="Annulation" >Annulation</a>
</li>
<li>
<a href="/customerBatchUpload.html" title="Add customers " >Add
customers </a>
</li>
<li class="last">
<a href="/customer.html" title="Customers" >Customers</a>
</li>
</ul>
</li>


i'm i correct that it would be better to have a class for all the menu
items? and have a high z-index in the css for them?

tibi

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to