Hello,
So I finally solved it. This issue was caused by an optimization plugin WP Fastest Cache. When I disabled css in it, it already started working properly.
And as for the slider offset, I solved that using jquery
$(window).on(‘hashchange’, function (e) {
if ( window.location.pathname == ‘/’ ){
$(“.entry-content”).css(“padding-top”,”10px”);
} else {
$(“.entry-content”).css(“padding-top”,”20px”);
}
}).trigger(‘hashchange’);
Hi @michalrama
Indeed, if caching plugins are configured incorrectly, they can cause unintended effects. Not all options are good for a given website.
While we won’t be able to provide direct optimisation support, we do have a general guidelines article here – https://creativethemes.com/blocksy/docs/troubleshooting/the-case-of-over-optimising-your-website/ – that should give you an idea on where to start.
Hope this helps!
Thanks.