调整nivoslider中的图像大小

时间:2014-03-06 20:15:47

标签: javascript css image resize nivo-slider

我的图像尺寸有问题。我正在使用nivoslider。我在CSS中设置宽度和高度:

.nivoSlider img {
width:688px !important;
height:324px !important; 

当我上传宽度为688px且高度为324px的图像时,它会起作用,但当我上传其他尺寸的图像时,它不会设置该尺寸。

您可以查看此页面http://www.zsmltu.cz/2014/并查看滑块。

Js文件在这里http://pastebin.com/NMNqT2ui

你能告诉我如何更改JS文件以将图像调整为宽度:688px和高度:324px

1 个答案:

答案 0 :(得分:0)

替换

.nivoSlider img { 
width:688px !important; 
height:324px !important;

使用

.nivoSlider img { 
width: 688px; 
height: auto;
}