まず、お使いのテーマは何でしょうか?Twenty Elevenでよろしいでしょうか。
次に、
エラーが出てしまう為
とのことですがエラーメッセージを貼ってもらえるとよろしいかと思います。
挙げていただいたトピックにも書いてありますがPHPの記述のイージーミスで表示されなくなたりしますので。
サイズの数値がfunctions.phpに記載しているのかと思い数値を探しましたが、見つかりません。
TwentyElevenですと、functions.phpの120行目あたりに
// The height and width of our custom header.
'width' => apply_filters( 'twentyeleven_header_image_width', 1000 ),
'height' => apply_filters( 'twentyeleven_header_image_height', 288 ),
という記述があります。
レスありがとう御座います
TwentyEleventとはテーマの編集でしょうか?
解凍したフォルダーのfunctions.phpには
// The height and width of our custom header.
‘width’ => apply_filters( ‘twentyeleven_header_image_width’, 1000 ),
‘height’ => apply_filters( ‘twentyeleven_header_image_height’, 288 ),
の記載はありませんでした。
テーマの編集でstyle.cssを開き
#page {
margin: 2em auto;
max-width: 780px;
}
を780に変更し
/* Featured Slider */
.
featured-posts {
border-bottom: 1px solid #ddd;
display: block;
height: 314px;
margin: 1.625em -8.9% 20px;
max-width: 780px;
padding: 0;
position: relative;
overflow: hidden;
の部分に1000と338という記載がありましたので780と314に変えてみましたところ画像というかHP全体の幅が780になりました。
mypacecreatorさんのいうfunctions.phpの記載自体テーマの編集で発見出来ましたので同じく数値を変更しました。
無事解決です。ありがとう御座いました。