Hi,
thanks for your question, and sorry for the trouble.
The reason for this is a different JavaScript error on your site (which you can see in the error log console in your browser). In particular, the JS file /wp-content/themes/cts/js/default.js of your theme is calling a select2 script function, but that function does not exist. This causes a JavaScript error, after which all other JavaScript code on the page is also stopped.
I can only suggest that you try contacting your theme’s developers about this.
Regards,
Tobias
Hi there Tobias,
I have cleared up the select2 issue however, the header is still not scrolling down with the user.
How can I fix this?
Thanks.
Ah, I’ve just changed the theme to WP2017 and it works.
Any thoughts on what could be obstructing it in the meantime?
Hi,
that’s good! Now, we just need a small CSS fix. Please add this to the “Custom CSS” textarea on the “Plugin Options” screen of TablePress:
.tablepress.fixedHeader-floating {
z-index: 1000;
}
Regards,
Tobias
Hi Tobias,
I’ve added that css to the Custom CSS textarea in the Plugin Options tab but it hasn’t seemed to fix it.
Hi,
ah, my bad. Due to the load order, we need a small tweak:
.tablepress.fixedHeader-floating {
z-index: 1000 !important;
}
Regards,
Tobias
Oh of course haha, !important.
Thank you so much!
Hi,
no problem, you are very welcome! 🙂 Good to hear that this helped!
Best wishes,
Tobias
P.S.: In case you haven’t, please rate TablePress here in the plugin directory. Thanks!