iPhone で Safari を使用してこのページを参照すると、部分的に黒い画面が表示されます。エラーのスクリーンショットは次のとおりです。
何か案が?背景画像の問題でしょうか?
背景画像が IPhone に読み込まれていない可能性があります。IPad でテストしましたが、すべて問題ありません。
body
CSSを改善してみてください
body {
font: 14px/16px georgia, times, times new roman, arial;
background-image: url(http://www.lazzarotto.it/templates/lazzarotto/image/background.jpg);
background-repeat: repeat-x;
background-color: #fff;
padding: 0px;
margin: 0px;
color: #554e3c;
}
に
body {
font: 14px/16px georgia, times, times new roman, arial;
background: url(http://www.lazzarotto.it/templates/lazzarotto/image/background.jpg) #fff repeat-x;
padding: 0px;
margin: 0px;
color: #554e3c;
}