Change NAV and DOT Owl Carousel 2

1

I'm using Owl Carousel 2, but I'm not able to make these changes to the image below. I need to change the position of the NAVs and DOTs into the banner, if they can of the force I thank.

    
asked by anonymous 18.06.2017 / 14:22

1 answer

2

For those of you with this question I was able to create a own-carousel-top class, then call her in the DIV, follow the data:

.owl-carousel-top .owl-next, .owl-carousel-top .owl-prev {
    top: 28%!important;
    opacity: .5;
    position: absolute;
    background: none!important;
    font-size:100px!important;
}

.owl-carousel-top .owl-next {
    right:2%;
    0px!important;*/
}

.owl-carousel-top .owl-prev {
    left:2%;
    0px!important;*/
}

.owl-carousel-top .owl-next:hover, .owl-carousel-top .owl-prev:hover{

    opacity: .9;

}

The variation goes according to its layout, being able to create media querys for the different resolutions.

    
18.06.2017 / 16:35