Ghost One

Ghost One Paranormal Researchers was built on a custom PHP content management system. Ryan Hettler was responsible for the front end development, e.g., splicing graphics, writing up html structure, customizing css, and writing up a small jQuery script.
Project Takeaway
During this project, the Safari Justified Nav Bug was prevalent. The solution was a small jQuery script which would re-render the navigation on resize when the browser window was less than the threshold. Since the responsive break point was set at 768 pixels, the threshold was set at 768 pixels.
$(window).bind('resize', function(){ var w = $(this).width(), threshold = 768; if(w < threshold){ $('.nav-justified').hide().fadeIn(); } });
Other Portfolio Items