Thank you very much for your help, Gunlaug. I've replied off-list.


At 10:37 PM -0400 10/19/05, Gunlaug seems to have written:

David, I'll just pick the easiest one for now.

David Agnew wrote:


<http://www.vsi.cape.com/~dagnew/arc/test.php>http://www.vsi.cape.com/~dagnew/arc/test.php>
  3. vertical and horizontal stretch of div contentbody: horiz only as
  wide as text, vert is crazy long.

Vertical stretch = minimum 100% of browser-window in IE/win.

add at bottom of stylesheet:
@media screen {
* html #content {height: 0;}
}
...if you like it to self-adjust in IE/win.
--

 4. my footer doesn't appear within it's parent div, but sometime
 appears within a cousin(?) div, if the cousin pushes down far enough.


You've 'absolute-positioned' #footer _one browser-window-height_ down
the page, regardless of how tall that window is and how tall any
container is. That's where #footer will stay unless you change
positioning-method.

I recommend you let #footer settle below the other containers, without
any positioning.

You should also delete <div id="clearfooter"></div>.

Your #footer may then be styled like this:
#footer {
width:100%;
height: 2em;
margin-top: 10px;
clear: both;
}

----
Other details (if you like):

body {padding: 0;} /* needed by Opera */
--

Try this if you don't like all those scrollbars in Firefox/win:

#containAbt, #containAct, #containArc, #containCal, #containCom,
#containCur, #containRes {
        /*border: 1px solid black; ...yes, comment this border out*/
        height: 100%;
        text-align:left;
padding-top: 1px;
margin-top: -1px;
}

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