Home › Forums › WoodMart support forum › Problems with HTML Blocks and TABS › Reply To: Problems with HTML Blocks and TABS
March 18, 2022 at 12:13 pm
#362033
Artem Temos
Keymaster
Try to add the following code snippet to the Custom JS on the document ready area in Theme Settings to fix this issue.
jQuery('.wd-nav-tabs > li').on('click', function() {
setTimeout(function() {
jQuery(window).trigger('resize.vcRowBehaviour');
jQuery(document).trigger('resize.vcRowBehaviour');
}, 300);
});