友達のサイトに、私は彼が正しくインデックスページのバナーを表示するのを助けようとしています。使用テーマは、アーケードベーシック(Batovasan)であるWordpress正しくインデックスページのヘッダーイメージを表示できません
ライブラリにアップロードされた画像がある1920x500px(150dpi)、生成されたHTMLコードは次のとおりです。
<header id="header">
<div class="title-card-wrapper">
<div class="title-card" style="height: 778px;">
<img class="header-img" src="http://www.example.com/wp-content/uploads/myHeader.jpg" alt="" style="position: absolute; left: -667px; top: 0px; right: auto; bottom: auto; width: auto; height: 100%;">
</div>
</div>
</header>
自動負の左側に拡大して画像が自動的に設定されて
位置...(http://www.tangoumois.com参照)
現在のCSSが
.title-card {
position: relative; }
.title-card-wrapper {
overflow: hidden; }
.title-card {
z-index: 1;
width: 100%;
display: table;
text-align: center; }
.title-card > img.header-img {
position: absolute;
z-index: 0;
left: -9999px;
max-width: none; }
とfunction.phpに、アップロードおよびサイズ変更するフィルタがあります画像
// Add a filter to bavotasan_header_image_width and bavotasan_header_image_height to change the width and height of your custom header.
add_theme_support('custom-header', array(
'header-text' => false,
'flex-height' => true,
'flex-width' => true,
'random-default' => false,
'width' => apply_filters('bavotasan_header_image_width', 1920),
'height' => apply_filters('bavotasan_header_image_height', 500),
));
私はクロームのDevでそれを確認したときに、私はこの負の位置せず、正しくバナーを設定するにはどうすればよい
次取得..
感謝 左:0は結構ですが、これはサイズ変更では何も変わりません... 私ははBurhanを(下)私たちにいくつかの良いヒントを与えていると思います...私は他のページと私のバナーを持っていると思い ヘッダーバナー(それらはすべて同じサイズです)が、テーマは背景として使用しようとしています...(それが大きくなっています...) – erwin