hey @Armin-Unruh,
Yes it was related to that, thank you for your help!! It's working again :)
Have a nice day,
Mathilde
hey @Armin-Unruh,
Yes it was related to that, thank you for your help!! It's working again :)
Have a nice day,
Mathilde
Dear @Richard,
Yes, but i’m not sure to understand everything, I’m not very experimented.
Could you please tell me how I should write my code, wrapping code in a 'Newpage Event’, so I can see if it’s work ? :)
Thank you very much!
Best,
Mathilde
Hi @Richard
Thank you for your respond!
Yes, everything is up to date, all plugins have been deactivated, and all CSS or JS removed but the problem still remain.
I just sent an email with the information you asked.
Best,
Mathilde
Dear Laytheme,
Some time ago I wanted to make a circle turn at the same time as the scroll, for that I used the following jQuery code in the part "Custom <head> content ».
<script>
jQuery(window).scroll(function() {
var offset = jQuery(window).scrollTop();
offset = offset * 0.4;
jQuery('.fixed-element-circle').css({
'-moz-transform': 'rotate(' + offset + 'deg)',
'-webkit-transform': 'rotate(' + offset + 'deg)',
'-o-transform': 'rotate(' + offset + 'deg)',
'-ms-transform': 'rotate(' + offset + 'deg)',
'transform': 'rotate(' + offset + 'deg)',
});
});
</script>
It worked perfectly fine so far, but since a few days now, once I click on "save changes" on the custom css and html page, I land on an "Internal server error » message.
After some tests to try to solve the problem, I realized it happened with all Jquery code I use, so I had to take them off.
I don’t understand why, can you please give me some help with that ?
Thank you in advance!