If you have added anchor links from another page to a specific section but the entrance animation in Elementor is preventing it from going to the specific section, you can try the following:

PHOTO EMBED

Fri Mar 31 2023 03:44:47 GMT+0000 (Coordinated Universal Time)

Saved by @25vitalyzd2 #undefined

<script>
  jQuery(document).ready(function($) {
    $('a[href^="#"]').click(function(event) {
      event.preventDefault();
      var target = $(this.hash);
      $('html, body').animate({
        scrollTop: target.offset().top
      }, 1000);
    });
  });
</script>
content_copyCOPY

This code will override the default behavior of anchor links and force the page to scroll to the specific section, bypassing any entrance animation. Just make sure to replace the 1000 value with the duration of your entrance animation. I hope this helps!