news slider style : demo 9

HTML

                    

CSS

                    

                    .post-slide{
                        background: #fff;
                        padding-bottom: 20px;
                        margin: 0 15px;
                    }
                    .post-slide > img{
                        width: 100%;
                        height: auto;
                    }
                    .post-slide .post-title{
                        text-transform: uppercase;
                        padding: 0 20px;
                    }
                    .post-slide .post-title > a{
                        font-size: 20px;
                        color: #222;
                        display: inline-block;
                        transition: all 0.3s ease 0s;
                    }
                    .post-slide .post-title > a:hover{
                        text-decoration: none;
                        color:#e74c3c;
                    }
                    .post-slide .post-description{
                        font-size: 14px;
                        padding: 0 20px;
                        margin: 15px 0 25px 0;
                    }
                    .post-bar{
                        list-style: none;
                        padding:10px 20px;
                        border-top:1px solid #e8e7e7;
                    }
                    .post-bar > li{
                        display: inline-block;
                        margin: 5px;
                        color:#aaaaaa;
                    }
                    .post-bar > li > a{
                        color:#aaaaaa;
                        transition:0.3s ease;
                    }
                    .post-bar > li > a:hover{
                        text-decoration: none;
                        color:#e74c3c;
                    }
                    .post-bar > li i{
                        margin-right: 7px;
                    }
                

JavaScript

News slider depend on jQuery and Owl carousel.

                    
                    

                    $(document).ready(function() {
                        $("#news-slider").owlCarousel({
                            items : 3,
                            itemsDesktop:[1199,3],
                            itemsDesktopSmall:[980,2],
                            itemsMobile : [600,1],
                            pagination:false,
                            navigationText:false
                        });
                    });