There are links when you click on them, the block opens and after the opening there is an indent if there is little text.
$('a.plus').click(function(){ var noteHeight = $('.note').height(); var next = $(this).next(); next.toggleClass("open"); if(next.hasClass("open")) { next.css({'height': noteHeight}); } else { next.css({'height': 0}); } return false; }); https://jsfiddle.net/Zkolya_linkoln/gs118p1d/2/
I suppose itβs necessary here instead
var noteHeight = $('.note').height(); something like that
var noteHeight = $(this).find('.note').height(); But not working
min-height: 400px;)? - Telionheight autobe - zkolya