So I added typed.js to my “book online” page, the script is working fine but the words are too bunched together because of my font. Is there a way to add more spacing between each word? I tried adding more spaces as well as some googling but no luck. I’m a coding n00b, HELP!
script
var typed = new Typed(‘#typed-text’, {
strings: [‘What can brown do fo’, ‘What can we do for you?’],
typeSpeed: 75,
backSpeed: 25,
loop: false,
cursorChar: ‘_’,
backDelay: 1000,
startDelay: 2000,
word-spacing: 200%;
});
/script
with no luck, tried percentage too. Am I inserting this into the correct space?