0

我正在使用 jquery 插件创建一个带有缩略图的图像滑块。我的目标是让主图像的背景是bg.png,缩略图部分的背景是wood.png

我已将 CSS 更改为我认为正确的内容(见下文),但缩略图部分的背景并没有完全扩展961px,它仅限于921px我用主图像建立的宽度。我有一种感觉,这可能是由于嵌套在插件的 php/jquery 中,我只是不确定如何改变它以使其工作。如果是这种情况,我该如何解决?如果是别的东西,我如何确定它是什么/如何修复它?

thethe-image-slider.php

timthumb.php

现场直播

谢谢。

CSS

.thethe_image_slider.white-square-1{
    background: url('../images/bg.png');
}
.white-square-1 .thethe-image-slider-thumbnails{
    background: url('../images/wood.png');
    margin-top: 20px;
    margin-bottom: 40px;
    width: 961px;
}
4

2 回答 2

1

找到这条线

<div class="thethe_image_slider white-square-1" id="thethe_image_slider323" style="width:921px;"><div class="thethe_image_slider_inner" style="width:921px; height:392px;">

并改成这个

<div class="thethe_image_slider white-square-1" id="thethe_image_slider323" style="width:961px;"><div class="thethe_image_slider_inner" style="width:921px; height:392px;margin:0 auto;">

在你的代码中

于 2012-09-30T22:12:19.297 回答
1

将您的thethe-image-slider-thumbnailsdiv 移出thethe_image_slider white-square-1div 但在gallerydiv 内。那对我来说很好。

于 2012-09-30T22:27:11.167 回答