Product tabs full content – not responding after latest Woodmart update
-
Hello, full height inside of long description stops working after latest theme update.
Code:
/* Product tabs full content */
.tabs-layout-accordion .woodmart-scroll .woodmart-scroll-content {
max-height: 100%!important;
}
Is not working anymore?
Can you give me code that can show all content without scrollbar?
Thank you
Hi,
To increase page speed performance we have renamed several classes completely and renamed most of the theme CSS classes prefix from “.woodmart-” to “wd-“. To fix your custom code please try to find and replace all “.woodmart-” to “.wd-” in your custom code. For example “.woodmart-scroll” now will be called “.wd-scroll”.
So in your case you need to replace previous custom code to this one:
.tabs-layout-accordion .wd-scroll .wd-scroll-content {
max-height: 100%!important;
}
Best Regards
The topic ‘Product tabs full content – not responding after latest Woodmart update’ is closed to new replies.