testimonial style : demo 43

HTML

                        

CSS

                        
                        

                        .testimonial{
                            padding: 0 15px;
                            text-align: center;
                        }
                        .testimonial .pic{
                            display: inline-block;
                            width: 100px;
                            height: 100px;
                            border-radius: 50%;
                            margin-bottom: 25px;
                            overflow: hidden;
                        }
                        .testimonial .pic img{
                            width: 100%;
                            height: auto;
                        }
                        .testimonial .description{
                            padding: 0 15px;
                            font-size: 13px;
                            color: #808080;
                            line-height: 26px;
                        }
                        .testimonial .testimonial-title{
                            font-size: 14px;
                            letter-spacing: 3px;
                            color: #000;
                            text-transform: uppercase;
                            position: relative;
                        }
                        .testimonial .testimonial-title:after{
                            content: "\f10d";
                            font-family: "Font Awesome 5 Free"; font-weight: 900;
                            display: inline-block;
                            width: 100%;
                            font-size: 40px;
                            color: #54478a;
                            margin-top: 30px;
                        }
                        .owl-theme .owl-controls .owl-page span{
                            display: block;
                            width: 12px;
                            height: 12px;
                            border-radius: 20px;
                            background: #f3904d;
                            margin: 5px 7px;
                            opacity: 0.5;
                        }
                    

JavaScript

(Testimonial depend on jQuery and Owl carousel.)
                        
                        

                        $(document).ready(function(){
                            $("#testimonial-slider").owlCarousel({
                                items:3,
                                itemsDesktop:[1199,2],
                                itemsDesktopSmall:[979,2],
                                itemsTablet:[768,2],
                                itemsMobile:[600,1],
                                pagination:true,
                                navigation:false,
                                navigationText:["",""],
                                slideSpeed:1000,
                                autoPlay:true
                            });
                        });
                    
License Terms