• Closed
  • t.milliken
    Spectator
    01.07.2014 at 21:29 #8512

    I am using the Evolve theme and am having problems with the Parallax slider. If I increase the width of the browser window, the image gets larger than the container for the slider. I have tried changing the image size but it still scales up to larger than the container. Does anyone have any suggestions?


    Tom

    t.milliken
    Spectator
    Posts: 1
    01.07.2014 at 21:48 #10135

    For an update, I added some custom css to change:
    #da-slider {
    min-height: 375px;
    }

    This fixed the issue, but on mobile browsers, the slider section looks a bit tall. I would rather limit the image size but am not sure how to do that.


    Tom

    Roman
    Spectator
    Posts: 3147
    02.07.2014 at 16:30 #10139

    try this:

    Code:
    @media only screen and (min-width: 768px){
    #da-slider {
    min-height: 375px;
    }
    }