Skip to content

Instantly share code, notes, and snippets.

@shazdeh
Created February 21, 2014 23:33
Show Gist options
  • Save shazdeh/9145929 to your computer and use it in GitHub Desktop.
Save shazdeh/9145929 to your computer and use it in GitHub Desktop.
Parallax: Add a down arrow in the header for scrolling pages.
<?php
function custom_down_arrow() {
global $themify;
if( '' != $themify->query_category && 'section' == $themify->query_post_type ) {
echo '<a href="#body" id="arrow-down" style="position: absolute; left: 50%; bottom: 100px; color: #fff; font-size: 25px;"><i class="fa fa-arrow-circle-down"></i></a>';
}
}
add_action( 'themify_header_end', 'custom_down_arrow' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment