testimonial style : demo 34

HTML

                        

CSS

                        
                        
                        

                        .testimonial{
                            text-align: center;
                            padding: 0 20px;
                        }
                        .testimonial .icon{
                            font-size: 60px;
                            line-height: normal;
                            color: #1ec4f3;
                        }
                        .testimonial .description{
                            font-size: 16px;
                            font-style: italic;
                            color: #777;
                            line-height: 26px;
                            margin-top: -20px;
                        }
                        .testimonial .pic{
                            width: 80px;
                            height: 80px;
                            border-radius: 50%;
                            overflow: hidden;
                            margin: 20px auto;
                        }
                        .testimonial .pic img{
                            width: 100%;
                            height: auto;
                        }
                        .testimonial .testimonial-title{
                            font-size: 16px;
                            font-weight: bold;
                            color: #474740;
                            letter-spacing: 1px;
                            text-transform: uppercase;
                        }
                        .testimonial .post{
                            display: block;
                            font-size: 14px;
                            color: #1ec4f3;
                        }
                        .owl-theme .owl-controls .owl-pagination{
                            margin-top: 20px;
                        }
                        .owl-theme .owl-controls .owl-page span{
                            width: 10px;
                            height: 10px;
                            background: #99bf4b;
                            border: 2px solid transparent;
                            opacity: 1;
                        }
                        .owl-theme .owl-controls .owl-page.active span,
                        .owl-theme .owl-controls .owl-page span:hover{
                            background: #fff;
                            border: 2px solid #99bf4b;
                        }
                    

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,
                                slideSpeed:1000,
                                transitionStyle:"fadeUp",
                                autoPlay:false
                            });
                        });
                    
License Terms