Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

nivo slider image resize issue

I have nivo slider in my web page. I need to display images of various width and height.The larger image displays behind the smaller image. Please refer the following screenshot.

enter image description here

I have to remove displaying larger image behind the small image. Is there any possibility to do it with nivo slider?

like image 685
designersvsoft Avatar asked May 29 '12 09:05

designersvsoft


1 Answers

I used this and it's worked :)

.theme-default .nivoSlider img {
    position:absolute;
    top:0px;
    left:0px;
    display:none;
    width: 556px;
    height: 183px !important;
}
like image 158
Hoang Tran Avatar answered Sep 25 '22 01:09

Hoang Tran