• Closed
  • t.milliken
    Spectator
    July 1, 2014 at 9:29 pm #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
    July 1, 2014 at 9:48 pm #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
    July 2, 2014 at 4:30 pm #10139

    try this:

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