hello, I have a problem with the module EasyBlog showcase, the images change when they overlap. How do I solve this problem?
I enclose a picture
I enclose a picture
<script type="text/javascript">
EasyBlog.require()
.script( 'featured' )
.done(function( $ ){
$( '.showcaseModule' ).implement( EasyBlog.Controller.Featured.Scroller ,
{
autorotate : {
enabled : <?php echo $params->get( 'autorotate' ) == '0' ? 'false' : 'true';?>,
interval: <?php echo $params->get( 'autorotate_seconds' );?>
},
"{slider}" : '.mod-showcase-list',
"{sliderNavigation}" : '.showcase-navi .showcase-a a'
},
function(){
});
var items = $('.showcase-item'),
maxHeight = 0;
$.each(items, function(i, item) {
var itemHeight = $(item).height();
maxHeight = itemHeight > maxHeight ? itemHeight : maxHeight;
});
$('.slider-holder').height(maxHeight);
});
</script>