0
私はthis pageの底にある移動ボックスを実装しています。しかし、左のナビゲーション矢印は表示されず、理由はわかりません。 CSSは以下の通りです。画像カルーセルCSSの問題
/*** Left & Right Navigation Arrows ***/
a.mb-scrollButtons {
display: block;
width: 45px;
height: 58px;
background: transparent url(../images/arrows.png) no-repeat;
position: absolute;
top: 50%;
margin-top: -29px; /* if you change the arrow images, you may have to adjust this (1/2 height of arrow image) */
cursor: pointer;
text-decoration: none;
outline: 0;
border: 0;
}
a.mb-scrollButtons.mb-left {
background-position: left top;
left: -15px;
}
a.mb-scrollButtons.mb-right {
background-position: right top;
right: -15px;
}
Frexuz、あなたの提案と説明に感謝します。それは完全に動作します。 –