Site not visible in Macintosh / Safari

Hi guys

I am working on a project where the site is not visible in Macintosh computers if we see that using Safari. I tested with FF in two Macs, it was visible in one but not in another.

Strange issue - wondering if anyone has any tips here for me.

The site if a quick look helps to understand the problem: http://mfp.kigoobe.fr

Best.

Hi jeremyCh. Welcome to the forums. :slight_smile:

The problem is with le font:

@font-face {
    font-family: 'Eurosti';
    src: url('Eurosti.TTF');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'DIN';
    src: url('DIN-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

Serving up just a .ttf is not enough, as different browsers require different versions. Get the full @font-face set of fonts (along with the CSS for each browser) here:

Thanks a lot Geek Ralph :slight_smile:

Have a nice day.