Last active
June 7, 2021 23:14
-
-
Save dannydickson/7d8e406afb9b86e11110b51dc85a8e29 to your computer and use it in GitHub Desktop.
Floating Font Awesome Back to Top Button in WordPress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(".to-top-btn").click( function(){ | |
$("html, body").animate({ scrollTop: 0 }, "slow"); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//* Add To Top Button | |
function add_genesis_entry_totop_button () { | |
echo '<div class="to-top-btn"><i class="fa fa-arrow-up fa-2"></i></div>'; | |
}; | |
add_action('genesis_footer', 'add_genesis_entry_totop_button'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.toTopBtn { | |
float: none; | |
margin: 20px auto 0 auto; | |
} | |
@media only screen and (min-width: 550px) { | |
.toTopBtn { | |
padding: 9px; | |
margin: 30px auto auto auto; | |
width: 40px; | |
background: #EFEFEF; | |
text-align: center; | |
font-size: 11px; | |
} | |
.toTopBtn:hover { | |
cursor: pointer; | |
color: #19B4FF; | |
border: 1px solid #19B4FF; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment