Hide Site Title in Parallax Pro Last updated on August 31, 2017 by Christoph Herr jQuery(function( $ ){ $( '.site-title a').hide(); $( document ).on('scroll', function(){ if ( $( document ).scrollTop() > 0 ){ $( '.site-title a' ).show(); } else { $( '.site-title a').hide(); } }); });