Home › Forums › WoodMart support forum › Product page tabs format breaking after switching between tabs › Reply To: Product page tabs format breaking after switching between tabs
August 26, 2019 at 11:38 am
#140390
Eric Watson
Participant
Hi,
Try to add the following code snippet to the Custom JS on document ready area in Theme Settings to fix this issue.
jQuery('.tabs > li').click(function() {
setTimeout(function(){
vc_rowBehaviour();
},10);
});
Regards