私のバナー画像を少し下げて、被写体の頭が見えるようにします。デスクトップ版で見ることができるように、被験者の頭は完全に見えますが、モバイル版のウェブサイトでは頭が見えず完全な画像も見えません。完全な画像が見えるように、画像を少し下にするにはどうすればよいですか?このようなモバイルサイトでバナー画像を下に移動するにはどうすればいいですか
写真ウェブサイトの写真desktop version of the website
htmlコード
<header>
<div class="container">
<div class="intro-text">
<div class="intro-lead-in" style="font-family: 'Satisfy', cursive;">Welcome To ************</div>
<div class="intro-heading">The path you won't turn your back on</div>
<a href="#about" class="page-scroll btn btn-xl">About Us</a>
</div>
</div>
</header>
CSSコードたぶん
header{
background-image:url(../img/bg.jpg);
background-repeat:no-repeat;
background-attachment:scroll;
background-position:center center;
-webkit-background-size:cover;
-moz-background-size:cover;
background-size:cover;
-o-background-size:cover;
text-align:right;
color:black;
}
header .intro-text{
padding-top:100px;
padding-bottom:50px;
}
header .intro-text .intro-lead-in{
font-family:"Satisfy","Helvetica Neue",Helvetica,Arial,sans-serif;
font-size:40px;
line-height:22px;
margin-bottom:20px;
text-align: right;
}
header .intro-text .intro-heading{
font-family:Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
font-weight:800;
font-size:25px;
line-height:50px;
margin-bottom:50px;
text-align:right;
color: red;
}
@media (min-width:768px){
header .intro-text{
padding-top:350px;
padding-bottom:200px;
}
header .intro-text .intro-lead-in{
font-family:"Satisfy","Helvetica Neue",Helvetica,Arial,sans-serif;
font-size:40px;
line-height:40px;
margin-bottom:25px;
text-align:right;
}
header .intro-text .intro-heading{
font-family:Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
font-weight:800;
font-size:25px;
line-height:75px;
margin-bottom:30px;
text-align: right;
color: red;
}
}
@media only screen and (max-width: 480px) {
header .intro-text{
padding-top:140px;
padding-bottom:100px;
padding-left: 110px;
}
header .intro-text .intro-lead-in{
font-family:"Droid Serif","Helvetica Neue",Helvetica,Arial,sans-serif;font-style: italic;
font-size:26px;
line-height:22px;
margin-bottom:20px
}
header .intro-text .intro-heading{
font-family:Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
font-weight:400;
font-size:17px;
line-height:18px;
margin-bottom:30px;
color: red;
}
}
'header {background-position:left top; } 'ルールをモバイル用のメディアクエリに追加します。これにより、画像は中央ではなく左上から開始されます。これを見てください:https://jsfiddle.net/abhitalks/93sbrt9s/ – Abhitalks
コンテナの要素/ボディには十分なパディングがない可能性があります。しかし、このような問題は、動作していないコード/作業コードのデモがなければ、診断するのが難しいです。 – Lewis
それは動作しませんでした。絵が中央に来て、すべてのテキストが重なり、絵も落ちなかった –