6

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?

designersvsoft
  • 1,861
  • 9
  • 39
  • 66

3 Answers3

10

I used this and it's worked :)

.theme-default .nivoSlider img {
    position:absolute;
    top:0px;
    left:0px;
    display:none;
    width: 556px;
    height: 183px !important;
}
Hoang Tran
  • 101
  • 3
3

add this

<style>
    .slider-wrapper,.nivoSlider , img{
        width:500px;
        height:200px;
        margin-bottom:0px !important;
        border-radius:10px;
    }
</style>
NassimPHP
  • 1,036
  • 10
  • 11
0
.theme-navigation-inside .nivoSlider img {
    position:absolute;
    top:0px;
    left:0px;
    display:none;
    height: auto;
}

I fhound this took care of the problem

PCTech
  • 1