JavaScript in Tribute Page Help? [Solved]

I’m attempting to add a fade-in on my tribute page, just so there is some JS on there. Can’t get it to work. I’ve reviewed my notes about 10x and it appears it’s coded correctly, but obviously something is off.
Any suggestions?
Greatly appreciate any input.

Hi. Elements you want to fadeIn() (or .slideDown(), etc.), should first be “undisplayed”. Your code is trying to fadeIn() an element that’s already displayed (or already “faded-in”, so to speak).
Add display: none; to the CSS for .vinnie-title-name for the desired effect.

Fantastic! Makes sense, thank you!

@kevcomedia - finally had a chance to sit down and apply. Was a very simple fix. Really appreciate the help!