From: Eliana Berlfein <[EMAIL PROTECTED]>

>I made a website that uses tables and css. I made the site on a Mac, 
>and it looks perfect. But on a PC the table cells are not the right 
>size. 

>Here's a link to the site: http://www.itea-school.com
>
>If you look at it on a Mac I'm pretty sure everything looks the way I 
>want it. If you look on a PC it's totally messed up.

I'm assuming you're speaking of IE/Win browsers on a PC, since Gecko and Opera 
are fine. Try removing the padding from the following selector - 

table {
        font-family: Verdana, Helvetica, Arial, sans-serif;
        font-size: 11px; 
        color: #62194b;
        line-height: 20px;
        padding-left: 20px; /* <<<<< remove this <<<<<< */ 
}

I'm not sure what that padding is there for, but removing it seems to even 
things out between the PC browsers I tried. If it's needed for another browser 
, you can just remove it for the IE/Wins by using the following selector/hack 
combination - 

/* \*/
* html table {padding-left: 0;}
/* */

hth,

~holly 
 
                   
______________________________________________________________________
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