Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS IE and FF work fine, Chrome, Opera, and Safari don't Reply To: IE and FF work fine, Chrome, Opera, and Safari don't

#147767
RjBradlow
Participant

Check the default settings of all your test browsers to make sure they are all set at the same font size. 16px

When sizing fonts use the all-star triple play: .pt – .px – .rem – in that order for each class.

Set your body default first:

body{
    background-color: #000;
    background-image: url(background.png);
    background-repeat: repeat;
    background-attachment: fixed;
    color: #F0F0F0;
    font-size: 12pt;
    font-size: 16px;
    font-size: 1.000rem;
    text-shadow: 1px 1px 3px #000;
    text-shadow: 0.1em 0.1em 0.2em #000;
}