Marek Mänd wrote:
[color=blue]
> .menu{
> background:yellow;[/color]
Always set a text color with background, for reasons stated numerous
times here before.
[color=blue]
> font:12px Arial;[/color]
Please don't use px for font size. Had you spent any time reading ciwas,
you'd know that.
[color=blue]
> .menu li{
> margin-bottom:0;
> margin-top:0;[/color]
After the fix I suggest below, you may not need them. Test in browsers
and see.
[color=blue]
> padding-bottom:0;
> padding-top:0;[/color]
You don't need those padding:0; declarations.
[color=blue]
> .menu a{
> display:block;
> margin:0;
> padding:0;
> border:solid 1px red;
> }
>
> <ul class="menu">
> <li><a href="">bla</a></li>
> <li><a href="">bla</a></li>
> <li><a href="">bla</a></li>
> <li><a href="">bla</a></li>
> </ul>
>
>
> latest MSIE6 SP1 has such ENORMOUS gaps between those hyperlinks.[/color]
Bug in MSIE/Win. Try this:
..menu a { width: 100%; } /* hack to fix Bill Gates' crap browser */
..menu>a { width: auto; } /* corrected width, hidden from msie win */
[color=blue]
> dont convince me I have to put all those <li>'tags
> consecutively onto one line...[/color]
I don't, and my nav anchors display: block work fine. See "on this page"
and "related links" on this page for working example.
http://www.tsmchughs.com/site/help
--
Brian (remove "invalid" from my address to email me)
http://www.tsmchughs.com/