On Aug 28, 2007, at 10:24 PM, Anne Pennington wrote:

> I know this is not really important nowadays but I do like thing to
> work, even if not totally in Mac IE5.
>
> Could some kind soul have a look at:
>
> http://www.digitalplot.co.uk/patrickcurry/
>
> The main part is disappearing off to the right, if I take the menus
> out but leave the navigation div it is OK but can't figure out why.
>
> Be very grateful if someone could cast some light on this.

You have a few minor issues.
1. as you say, the main content block moves to the right.
#page-wrapper { clear:both}
will fix this nicely.

2. the div #navigation (brown band at the top) is not visible,  
because it is empty (only content is floated)
* html>body #navigation {
display:inline-block;
width:100%
}
Served only to IE Mac will fix it.
Note that in other browsers, that div will not expand when the user  
resizes the text.

3. the text in your navigation-bar is not centred. That is a bug in  
IE Mac. The only work around is to wrap the text (inside) the <a> in  
a span.
Like so: <a href="#"><span>Home</span></a>
No need to add any styling to that span.

For more on IE mac fun things:
<http://l-c-n.com/IE5tests/>

Philippe
---
Philippe Wittenbergh
<http://emps.l-c-n.com>




______________________________________________________________________
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