HTML / CSS Responsiveness

2

I'm setting a code, and I can not in any way, make the prev and next buttons on the car show up on the mobile! I already adjusted by the medium queries, but nothing solves!

The code is extensive to put here, so who can take a look, it is published here: www.extudando.esy.es/hotsite

and you can download the files here: www.extudando.esy.es/hotsite/hotsite1.zip

    
asked by anonymous 28.12.2017 / 11:30

1 answer

0

The responsible for this is the arrows property, it should be true when it is of a certain size. You specify.

$('.responsive').slick({
    dots: true,
    infinite: false,
    speed: 300,
    slidesToShow: 4,
    slidesToScroll: 4,
    responsive: [{
        breakpoint: 320,
        settings: {
            arrows: true
        }
    }]
});
    
28.12.2017 / 11:40