Typing effect typed.js

Someone could help installing and customizing typed.js ?

Right, so you need to go into the “custom code” section and add a couple things to the “footer” section.

<script src="https://raw.githubusercontent.com/mattboldt/typed.js/master/js/typed.js" type="text/javascript"></script>
<script>
  $(document).ready(function(){
      $(".typed").typed({
          strings: ["Type this!"],
          typeSpeed: 0
      });
  });
</script>

You give whatever thing you want to be typed out a class of “typed” (without the quotes) and then put whatever you want to be typed in the quotations in the code above. You can customize that code however you want as documented by the github page.

Has this solution worked for anyone? I’m having no luck.

yes, worked for me. Thanks so much!