Nectar Slider Arrows Color and Background Change
1:To Change arrow color:
.swiper-container .slider-prev > i { color: red; }
.swiper-container .slider-next > i { color: red; }2:To change background color:
.swiper-container a.slider-prev:hover, .swiper-container a.slider-next:hover {
background-color: rgba(0,0,0,0.8);
}
.swiper-container a.slider-prev, .swiper-container a.slider-next {
background-color: rgba(0,0,0,0.2);
}<p>Cheers</p>