testimonial style : demo 67

HTML

                        

CSS

                        
                        

                        .testimonial{
                            text-align: center;
                            margin: 20px 30px 40px;
                        }
                        .testimonial .pic{
                            display: inline-block;
                            width: 100px;
                            height: 100px;
                            border-radius: 25px;
                            border: 4px solid #6b2014;
                            box-shadow: 0 7px rgba(0, 0, 0, 0.1), 0 5px #e4ac01;
                            margin-bottom: 15px;
                            overflow: hidden;
                        }
                        .testimonial .pic img{
                            width: 100%;
                            height: auto;
                        }
                        .testimonial .description{
                            padding: 0 20px 20px;
                            font-size: 15px;
                            color: #333;
                            line-height: 30px;
                            border-radius: 25px;
                            border-bottom: 4px solid #6b2014;
                            box-shadow: 0 7px rgba(0, 0, 0, 0.1), 0 5px #e4ac01;
                            margin-bottom: 25px;
                        }
                        .testimonial .title{
                            display: block;
                            margin: 0 0 7px 0;
                            font-size: 20px;
                            font-weight: 600;
                            color: #6b2014;
                            letter-spacing: 1px;
                            text-transform: uppercase;
                        }
                        .testimonial .post{
                            display: block;
                            font-size: 15px;
                            color: #e4ac01;
                            text-transform: capitalize;
                        }
                        .owl-theme .owl-controls{ margin-top: 0; }
                        .owl-theme .owl-controls .owl-page span{
                            width: 15px;
                            height: 15px;
                            border-radius: 50%;
                            background: #6b2014;
                            opacity: 0.8;
                            box-shadow: 0 0 8px rgba(0, 0, 0, 0.45);
                            transition: all 0.3s ease 0s;
                        }
                        .owl-theme .owl-controls .owl-page.active span{ background: #e4ac01; }
                        @media only screen and (max-width: 479px){
                            .testimonial{ padding: 20px 15px 40px; }
                            .testimonial .description{ padding: 0 5px 20px; }
                        }
                    

JavaScript

(Testimonial depend on jQuery and Owl carousel.)
                        
                        

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