BuddyPress のデフォルト テーマに基づいて、独自の子テーマを作成しています。幅/高さを 100% 引き伸ばした背景画像が必要です。Chrome と Firefox では問題なく動作しますが、最新バージョンの IE では、画像は元のサイズのまま中央に表示されます。ストレッチは行われません。私が使用している CSS は次のとおりです。これは、親テーマ (BP の既定のテーマ) を拡張したものです。
body {
background-color: #000000;
background-image: url(images/DSC09005cc.jpg);
background-repeat: no-repeat;
background-position: center top;
background-attachment: fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
color: #555;
font-size: 12px;
font-family: Arial, Tahoma, Verdana, sans-serif;
line-height: 170%;
max-width: 1250px;
margin: 0 auto;
width: 95%;
}
前もって感謝します。ディマ