Deprived One wrote: > I am trying to use css to do the layout on > http://www.centralmiss.com/accesscontrolgroup/index.html and most > everything seems correct in firefox, but IE is not creating the box I > desire at all. CSS can be found at > http://www.centralmiss.com/accesscontrolgroup/style.css.txt > > Any help is greatly appreciated. > > Jay Drake > > Jay, it is not exactly clear to me about exactly what you are after. If your goal is to make it the same in IE6.0. FF1.5.2, and Opera9beta, then: 1/ Delete the stuff above the doctype, that is putting it in quirks mode. 2/ div.content { padding-top: 1px;<<<<< add this to this selector } 3/ Validate the CSS. 4/ Make a back-up copy of your html file. Run it through TidyOnline<http://infohound.net/tidy/> to clean up the markup. 5/ Validate the markup. Lucky strike extras: 6/ Trim the page width so it will not draw a scroll bar at 800. 7/ Set the text and side nav flush left(text-aligh: left; 8/ Reset the fonts so that IE can scale them. This one method of doing so: body { font: 100%/1.2 sans-serif;} Delete the font-families you currently have on the selectors; Set the both navs to font-size: 95%; Set no font-size on the content-text(it will inherit default from the body) HTH, ~davidLaakso
-- http://www.dlaakso.com/gustave/ ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- 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/
