testimonial style : demo 32

HTML

                        

CSS

                        
                        
                        

                        .testimonial{
                            text-align: center;
                        }
                        .testimonial .description{
                            font-size: 16px;
                            color: #8a9aad;
                            line-height: 25px;
                            margin-bottom: 20px;
                        }
                        .testimonial .pic{
                            width: 80px;
                            height: 80px;
                            position: relative;
                            margin: 0 auto;
                        }
                        .testimonial .pic img{
                            width: 100%;
                            height: auto;
                            border-radius: 5px;
                        }
                        .testimonial .testimonial-title{
                            font-size: 14px;
                            font-weight: 800;
                            color: #8a9aad;
                            text-transform: capitalize;
                        }
                        .testimonial .post{
                            display: inline-block;
                            font-size: 12px;
                            color: #8a9aad;
                            text-transform:capitalize;
                            margin-top: 5px;
                        }
                        .owl-theme .owl-controls{
                            position: absolute;
                            top: 38%;
                            width: 100%;
                            opacity: 1;
                        }
                        .owl-theme .owl-controls .owl-buttons div{
                            width: 50px;
                            height: 50px;
                            line-height: 40px;
                            background: transparent;
                            border: 1px solid #808080;
                            border-radius: 0;
                        }
                        .owl-prev{
                            position: absolute;
                            left: -3%;
                        }
                        .owl-next{
                            position: absolute;
                            right: -3%;
                        }
                        .owl-prev:after,
                        .owl-next:after{
                            content: "\f104";
                            font-family: "Font Awesome 5 Free"; font-weight: 900;
                            font-size: 16px;
                            color: #808080;
                        }
                        .owl-next:after{
                            content: "\f105";
                        }
                        @media screen and (max-width: 767px){
                            .owl-prev{ left:0; }
                            .owl-next{ right:0; }
                        }
                        @media screen and (max-width: 480px){
                            .owl-theme .owl-controls{ top: 48%; }
                        }
                    

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],
                                itemsMobile:[550,1],
                                pagination: false,
                                navigation:true,
                                navigationText:["",""],
                                slideSpeed:1000,
                                transitionStyle:"goDown",
                                autoPlay:true
                            });
                        });
                    
License Terms