Output is hidden
-
I am using a custom theme and I can see the output of the plugin in the widget area I created but it is invisible and in web tools greyed out. I can see the title of the shortcodes widget but I cannot see the carousel displaying the posts. Anything else I place in that widget is displayed but not this plugin’s output. In the Web Tools I see this
owl.carousel.min.css line 6
.owl-carousel {
display: none;
width: 100%;
z-index: 1;
}So from my knowledge it is like the JS is not changing the display or something?
Here is a script at the bottom of the container:
jQuery(document).ready(function($){
$(‘#carousel-5’).owlCarousel({
loop:false,
autoplay : true,
autoplayTimeout : 2000,
smartSpeed : 400,
fluidSpeed : 400,
autoplaySpeed : 400,
navSpeed : 400,
dotsSpeed : 400,
margin: 10,
autoplayHoverPause : false,
nav : false,
navText : [‘<‘,’>’],
dots : false,
center : false,
responsiveRefreshRate : 200,
slideBy : 1,
mergeFit : true,
mouseDrag : true,
touchDrag : true,
responsive:{
0:{items:1},
480:{items:1},
768:{items:2},
991:{items:3},
1200:{items:4},
1500:{items:6},
}
});
});
- The topic ‘Output is hidden’ is closed to new replies.