Give this a try:
Locate the file boxlayout.js
, open it, and find lines 54-57
. The section of code should resemble the following:
if( !$section.data( 'open' ) ) {
$section.data( 'open', true ).addClass( 'bl-expand bl-expand-top' );
$el.addClass( 'bl-expand-item' );
}
After that, include the following snippet:
setTimeout(
function() {
$( window ).trigger( 'resize' );
},
500
);
Now, the updated section should appear as follows:
if( !$section.data( 'open' ) ) {
$section.data( 'open', true ).addClass( 'bl-expand bl-expand-top' );
$el.addClass( 'bl-expand-item' );
}
setTimeout(
function() {
$( window ).trigger( 'resize' );
},
500
);