How to style prev/next arrows button?

前端 未结 4 782
-上瘾入骨i
-上瘾入骨i 2021-02-05 11:30

GOAL

I\'ve been trying to modify the slick.css to fit the style I need in my site. I got the slick.css

4条回答
  •  一整个雨季
    2021-02-05 12:22

    .slick-prev::before {
        font-family: FontAwesome;
        content: "\f0d9";
        font-size: 22px;
    }  
    .slick-next::before {
        font-family: FontAwesome;
        content:  "\f0da";
        font-size: 22px;        
    }      
    
    
    
    
    

提交回复
热议问题