testimonial style : demo 14

HTML

                        

CSS

                        
                        

                        .testimonial{
                            text-align: center;
                            margin: 0 15px;
                        }
                        .testimonial .description{
                            font-size: 1.15em;
                            margin: 40px 0 20px;
                            color: dimgray;
                        }
                        .testimonial .pic{
                            border: 2px solid #fff;
                            width: 61px;
                            height: 74px;
                            display: inline-block;
                            overflow: hidden;
                            border-radius: 100px;
                            margin-right: 10px;
                        }
                        .testimonial > img{
                            box-shadow: 0 0 3px grey;
                        }
                        .testimonial .testimonial-title{
                            display: inline-block;
                            text-transform:capitalize;
                            color: #fff;
                            font-size: 0.9em;
                            text-align: left;
                            font-weight: bold;
                            line-height: 3px;
                            position: relative;
                            top: -20px;
                        }
                        .testimonial .testimonial-title a{
                            color: #3498db;
                            display: block;
                            margin-bottom: 15px;
                        }
                        .testimonial .testimonial-title small{
                            display: block;
                            margin-top: 10px;
                            font-size:14px;
                        }
                        .owl-theme .owl-controls .owl-buttons div{
                            border:1px solid #fff;
                            border-radius: 0;
                            background: transparent;
                            transition: all 0.5s ease 0s;
                            padding: 3px 7px;
                        }
                        .owl-theme .owl-controls .owl-buttons div:hover{
                            background: #3498db;
                            border:1px solid #3498db;
                        }
                        .owl-prev:before,
                        .owl-next:before{
                            content: "\f053";
                            font-family: "Font Awesome 5 Free"; font-weight: 900;
                            color: #fff;
                        }
                        .owl-next:before{
                            content: "\f054";
                        }
                        @media only screen and (max-width: 767px){
                            .testimonial .description{
                                font-size: 14px;
                            }
                        }
                    

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: false,
                                navigation:true,
                                navigationText:["",""],
                                autoPlay:false
                            });
                        });
                    
License Terms