我有点问题。我使用OwlCarousel 2来制作'推荐旋转器/滑块',但看起来像这样:
我打包'盒子'在另一个div中,但它没有解决它。
这是我的HTML:
<div>
<div class="testimonial-box">
<div class="testimonial-content">
<div class="testimonial-logo">
<img src="http://placehold.it/100x100" alt="" class="img-responsive img-thumbnail pull-left" />
</div>
<p>
<!-- CONTENT -->
</p>
<div class="testimonial-meta">
<p>
<h5>Lorem Ipsum</h5>
<span>, <i>Web Developer</i></span>
</p>
<p class="website">
<a href="http://vrs-factory.pl">VRS-Factory</a>
</p>
</div>
</div>
</div>
</div>
CSS [SASS]:
section.testimonials {
padding: 30px 0;
.testimonial-logo {
img {
margin-top: -88px;
}
}
.testimonial-content {
border: 1px solid rgba( $SecondColor, .2 );
border-radius: 3px;
padding: 20px;
}
.testimonial-meta {
h5 {
display: inline-block;
margin-bottom: 0;
}
}
.owl-carousel {
.owl-item {
img {
width: auto;
}
}
}
}
更新 这是演示:DEMO
答案 0 :(得分:0)
这是因为overflow: hidden
的{{1}}。
我在.owl-carousel .owl-stage-outer
上添加margin-top
来修复它。
.owl-item