我在flexslider上设置了自动高度,其下方仍留有空间。
我已将背景色应用到滑块,并且它使用自动高度并上下移动,但似乎滑块正在拍摄最大的照片并将滑块保持在该高度。
任何帮助将是巨大的!
您可以在此处实时查看该页面:http : //therichmondhillgallery.com/index.php/shows/bruce-yardley/
This is my html:
<div id="carousel" class="flexslider">
<ul class="slides">
<li class="slide">
<img src="<?php echo $thumb_image; ?>" />
</li>
</ul>
</div>
<div id="slider" class="flexslider">
<ul class="slides">
<li class="slide">
<img class="slidermainimg" src="<?php echo $main_image; ?>" />
</li>
</ul>
</div>
Run Code Online (Sandbox Code Playgroud)
这是我的CSS:
/* Browser Resets
*********************************/
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {outline: none;}
.slides,
.flex-control-nav,
.flex-direction-nav {margin: 0; padding: 0; list-style: none;}
/* Icon Fonts
*********************************/
/* Font-face Icons */
@font-face {
font-family: 'flexslider-icon'; …Run Code Online (Sandbox Code Playgroud)