Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.8k views
in Technique[技术] by (71.8m points)

slick.js - CSS trouble with Slick Slider navigation

I'm having trouble with a slick.js display. The "next" arrow is displaying on the left side and doesn't seem to respond positionally when I adjust the right attribute. The "prev" arrow is displaying fine and, as far as I can tell, is being loaded the same way. My dev site is here.

Here's my CSS for this section:

#front-page-slider, #front-page-slider .slide {
    min-height:500px;
}

.width-fixed {
    max-width: 1200px;
    margin: 0 auto;
}

.slider-container {
    position:relative;
}

#join-widget {
    position:absolute;
    text-align:center;
    width: 100%;
    bottom: 0;
}

#gform_wrapper_3 .gform_heading {
    display:none;
}

#join-widget form {
    display:flex;
    justify-content:center;
}

#front-page-slider .slick-prev {
    left: 10px;
}

#front-page-slider .slick-next {
    right: 10px;
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Your CSS for slick.arrow (in the file theme.min.css) includes left: 10px. To override this, include in your slick.next class the value left: auto.

#front-page-slider .slick-next {
    right: 10px;
    left: auto;
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.5k users

...