Hello,
This is Definitely Possible. Please follow the Step below:
- Use the following HTML Code for the Panels:
Panel heading without title
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Vel, esse, velit, eaque officiis mollitia.
Panel heading without title
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Vel, esse, velit, eaque officiis mollitia inventore ipsum minus quo itaque provident error adipisci quisquam ratione assumenda at illo doloribus beatae totam?
Panel heading without title
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Vel, esse, velit, eaque officiis mollitia inventore ipsum minus quo itaque provident error adipisci quisquam ratione assumenda at illo doloribus beatae totam?
- Add the following JS Code in the js/functions.js File replacing the Entire commonHeight: function( element ) Function Block:
commonHeight: function( element ){
var maxHeight = 0;
element.children('[class*=col-]').each(function() {
var elementChild = $(this).children();
elementChild.css({ 'height': '' });
if( elementChild.hasClass('max-height') ){
maxHeight = elementChild.outerHeight();
} else {
if (elementChild.outerHeight() > maxHeight)
maxHeight = elementChild.outerHeight();
}
elementChild.css({ 'height': '100%' });
});
element.children('[class*=col-]').each(function() {
$(this).height(maxHeight);
});
},
This will definitely work fine. Let us know if we can help you with anything else or if you find any further issues.