shawn a wrote:
Website in question: http://shawna.iprx.com/horizon2.htm


Display issues:

-- FF, NN, Opera --
...box model problem and a CSS-error.

#column1{
        float: left;
        padding: 22px 5px 10px 0px; <-- missing last value here
        width: 60%;
        text-align: left;
}

#column2{
        float: right; <-- modified for better line-up
        padding: 22px 5px 5px 0px;
        width: 38%; <-- modified to compensate for padding
        text-align: right;
}

-- Exploder 6.0 -- works : nothing?
...as usual :-)

#navlist {_height: 0; <-- add "HasLayout" (one way or the other)

img.double_brd {display: block;} <-- add display-value for IE/win

----
HTML:
Add missing </p> in <div id="column2">
----

Note: padding is *added* to container-width in W3C standards, so 60%/40%
gets too wide. Simply make width of one or both smaller until those
containers fall into place.
I changed #column2 to 'float: right;' because I think it lines up nicer
that way. No big deal, as the float will stay in place anyway.

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/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to