もし
function wpse_custom_header_setup() {
add_theme_support( 'custom-header', apply_filters( 'wpse_header_args', array(
'width' => 1460,
'height' => 220,
) ) );
}
add_action( 'after_setup_theme', 'wpse_custom_header_setup' );
pxでヘッダの幅を定義するのを手伝うことができます。ヘッダ画像を100%に設定して http://braidingfreedom.com/ ?
デフォルトでは、ヘッダ画像はすでに100%幅に設定されています。 14のテーマのstyle.cssの571-578行目をチェックする
#site-header img {
max-width: 100%;
}
もっと大きなヘッダが必要な場合は、質問のコードでサイズをそれに応じて設定する必要があります。
もう1つ注意が必要ですが、847行目から853行目までのsite-header
の最大幅を試してみることができます。
.site-header {
background-color: #000;
max-width: 1260px;
position: relative;
width: 100%;
z-index: 4;
}
あなたはあなたの関数であなたのセット幅にmax-width: 1260px;
をセットする必要があります