Thank you!
That defiantly worked, but I'm curious how I can introduce the padding
below each root item list. 

ie.

<ul>
<li>Header
        <ul>
                <li><a href="">link</a></li>
                <li><a href="">link</a></li>
        </ul>
</li>
<padding here>
<li>Header 2
        <ul>
                <li><a href="">link</a></li>
                <li><a href="">link</a></li>
        </ul>
</li>
<padding here>
...
</ul>

Sorry.. I'm a new when it comes to this css thing :)
Maybe I should just take a different design approach altogether.  I've
seen nice menus that when hovered over, it's an even square (almost like
a table) but when you view the source, they to just did the <li></li>
etc...

That's kinda my goal...

Chris
-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Kieron
McIntyre
Sent: Wednesday, June 07, 2006 4:04 PM
To: 'Chris C'; css-d@lists.css-discuss.org
Subject: Re: [css-d] IE BugFix Required :)

Chris wrote:

> I'm having a hard time finding the bug that is causing the 
> left navigation pane to not look right in IE7 (I havn't even 
> seen what it looks like in IE6 yet).

I have viewed the page in IE6 and 7 and the issue is identical.
Currently, your navigation headings (general, league and site details)
are <li> elements.

An easy way to solve the issue would be to turn these into <h2> elements
(for example) and separate out the sub navigation elements into separate
lists.

In case anyone disagrees with that, the slightly more involved but
accurate fix would be to nest the sub navigation elements as lists
within the headings' <li> elements:

<ul>
<li>League
        <ul>
                <li><a href="">link</a></li>
                <li><a href="">link</a></li>
        </ul>
</li>
...
</ul>

Regards,

Kieron McIntyre
www.digbyswift.com

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- 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/

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- 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