Roelf D. Kuitse wrote:
> I have been working at converting our webpage to pure xml and css and I
> though I had accomplished this until yesterday.  I have a drop down
> horizontal menu at the top of my page that I created with css and xml
> but IE6 will not drop the list down when you hover over it.  Any
> Ideas??? 
>
>  
>
> www.autodata.com/test/test
>
> <snip>
>   
Hi Roelf,
I ran into something like this recently and with the moderator's
permission, I'll post this though it is a markup issue, not a CSS issue.

As it happens, when you nest one <ul> within another, the nested <ul>
must be in an <li> from the parent <ul>:
example

<ul id="parentlist">
    <li>Some item</li>
    <li>Some item</li>
    <li>Some item</li>
    <li>
        <ul id="childlist">
            <li>Some child item</li>
            <li>Some child item</li>
            <li>Some child item</li>
            <ul> <!--end child list -->
    </li>
</ul> <--end parentlist -->

This should help, at least somewhat.

Regards,
~Ray

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to