testimonial style : demo 47

HTML

                        

CSS

                        
                        

                        .testimonial{
                            border: 1px solid #c9ced3;
                            border-top: 3px solid #c9ced3;
                            padding: 70px 25px 100px;
                            margin-bottom: 30px;
                            position: relative;
                        }
                        .testimonial:after{
                            content: "\f10d";
                            font-family: "Font Awesome 5 Free";
                            font-weight: 900;
                            font-size: 30px;
                            color: #00adb7;
                            position: absolute;
                            top: 20px;
                            left: 25px;
                        }
                        .testimonial .description{
                            font-size: 14px;
                            color: #666;
                            line-height:26px;
                        }
                        .testimonial .pic{
                            width: 100px;
                            height: 100px;
                            position: absolute;
                            bottom: -30px;
                            left: 25px;
                        }
                        .testimonial .pic img{
                            width: 100%;
                            height: auto;
                        }
                        .testimonial .testimonial-title{
                            font-size: 20px;
                            color: #000;
                            position: absolute;
                            bottom: 20px;
                            left: 150px;
                        }
                        .testimonial .testimonial-title small{
                            display: block;
                            font-size: 14px;
                            color: #666;
                            margin-top: 7px;
                        }
                        .owl-theme .owl-controls .owl-page.active span{
                            background: #00adb7;
                        }
                    

JavaScript

(Testimonial depend on jQuery and Owl carousel.)
                        
                        

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