Question
Remove Filters Button loads before the content displays after the filtration was applied
Answer
In this video, you’ll see how to adjust the Remove Filters Button loading speed, so it would be displayed simultaneously with the filtered out content.
Please use this code to get the same results as in the video:
.jet-remove-all-filters {
visibility: visible;
opacity: 1;
transition: opacity 1.3s ease-out, visibility 1.3s ease-out;
}
.jet-remove-all-filters.hide {
display: flex;
visibility: hidden;
opacity: 0;
}
Was this article helpful?
YesNo