Duane Nelson wrote:
> Not really...I think my float has outsmart me :-\

I didn't know those humble CSS-floats were intelligent beings ... I must
have missed something ;-)

> [...] Now my right column has bumped down in IE5 and IE6.  My problem
>  is that I've done so many changes in the FF/IE7 mode that I don't 
> know where to start to fix it.
> 
> <http://alansonnazarene.org/index1.html>

> Overall I need some assistance top-aligning the main and right 
> columns.

Float some more, and pull in some margins for good measure...

#sidebar {
     margin-bottom: 8px;
     border: 0;
     width: 240px;
     background-color: transparent;
     float: right  /* added */;
     margin-left: -10px /* changed */;
}

...and you will outsmart those floats again :-)

Example: <http://www.gunlaug.no/tos/alien/dn/test_08_0830.html>

> Also if you see where I could improve, please don't hesitate to give 
> your opinion.

Maybe not using font-size in pixels..? Not that there's anything wrong
with that, but there's still something wrong with IE.

The addition of...

#masthead img {display: block;}

...will also remove the gap above navigation in IE6. Remember that IE6
and older don't respect declared dimensions, and an image by default is
'inline' with space for descenders.

regards
        Georg
-- 
http://www.gunlaug.no
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to