Hello,
It is Definitely Possible to disable the Common Height on Mobile Devices. Please find the following code in the js/functions.js File:
commonHeight: function( element ){
var maxHeight = 0;
element.children('[class*=col-]').each(function() {
var element = $(this).children();
if( element.hasClass('max-height') ){
maxHeight = element.outerHeight();
} else {
if (element.outerHeight() > maxHeight)
maxHeight = element.outerHeight();
}
});
element.children('[class*=col-]').each(function() {
$(this).height(maxHeight);
});
},
and replace it with:
commonHeight: function( element ){
var maxHeight = 0;
element.children('[class*=col-]').each(function() {
if( $body.hasClass('device-sm') || $body.hasClass('device-xs') || $body.hasClass('device-xxs') ) { return false; }
var elementChild = $(this).children();
if( elementChild.hasClass('max-height') ){
maxHeight = elementChild.outerHeight();
} else {
if (elementChild.outerHeight() > maxHeight)
maxHeight = elementChild.outerHeight();
}
});
element.children('[class*=col-]').each(function() {
if( $body.hasClass('device-sm') || $body.hasClass('device-xs') || $body.hasClass('device-xxs') ) {
$(this).css({ 'height': '' });
} else {
$(this).height(maxHeight);
}
});
},
This will definitely work fine. Thanks for your Patience.
Do let us know if we can help you with anything else or if you find any further issues with Canvas.