Schalk wrote:

>Greetings All
>
>Please check the following page: www.volume4.com/scq/
>
>in the following browsers: PC: IE 5.5+, Firefox - MAC: Safari 2.0, Firefox
>
>Thanks!
>
>  
>
Schalk,
Couple of little things you may want to consider:
- You need a background-color on html, body. Not all OS/browsers are 
default #FFF. The background-color I have set for Opera is Fuchsia.
- Let the content determine the height. Font-zoom is causing breaking.
- Em set on the body for font-size triggers a bug that causes your 
layout to go really goofy in IE..
Try:
html, body {
    background-color: #FFF;/*added*/
    margin:0;
    border:0;
    padding:0;   
    /*font:.9em/120% Verdana,Arial,Helvetica,sans-serif;*/
    font-family: Verdana,Arial,Helvetica,sans-serif;
    line-height: 1.2;/*raw number*/
}
- You've got a couple of minor mark-up errors.
Best,
~dL
______________________________________________________________________
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