testimonial style : demo 60

HTML

                        

CSS

                        
                        

                        .testimonial{ text-align: center; }
                        .testimonial .description{
                            font-size: 15px;
                            color: #585656;
                            line-height: 27px;
                            margin-bottom: 30px;
                        }
                        .testimonial .pic{
                            display: inline-block;
                            width: 160px;
                            height: 160px;
                            border: 5px solid #1bddc6;
                            margin-bottom: 15px;
                            position: relative;
                        }
                        .testimonial .pic:after{
                            content: "";
                            border-width: 20px;
                            border-style: solid;
                            border-color: #1bddc6 #1bddc6 transparent transparent;
                            position: absolute;
                            bottom: -33px;
                            right: 20%;
                            transform: rotate(-15deg);
                            z-index: -1;
                        }
                        .testimonial .pic img{
                            width: 100%;
                            height: auto;
                        }
                        .testimonial .title{
                            display: block;
                            font-size: 22px;
                            font-weight: 700;
                            color: #413f3f;
                            letter-spacing: 1px;
                            text-transform: capitalize;
                            margin-bottom: 7px;
                        }
                        .testimonial .post{
                            display: block;
                            font-size: 15px;
                            color: #585656;
                            text-transform: capitalize;
                        }
                        .owl-theme .owl-controls{
                            margin-top: 10px;
                        }
                        .owl-theme .owl-controls .owl-page span{
                            width: 30px;
                            height: 3px;
                            background: #585656;
                            border-radius: 0;
                            opacity: 1;
                            transition: all 0.4s ease 0s;
                        }
                        .owl-theme .owl-controls .owl-page.active span,
                        .owl-theme .owl-controls.clickable .owl-page:hover span{
                            background: #1bddc6;
                        }
                    

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,
                                slideSpeed:1000,
                                autoPlay:true
                            });
                        });
                    
License Terms