This file contains 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
$(document).ready(function() { | |
$('nav.primary a').click(function(event) { // the elements you click to scroll | |
event.preventDefault(); | |
var link = this; // you need this if you are using hash links on ex: a href="#link" to id="link" | |
$.smoothScroll({ | |
offset: -160, // adjusts where the scroll will stop so the height of the scrolling element plus the height of the element you are scrolling to. | |
speed: 2000, | |
scrollTarget: link.hash | |
}); | |
}); |
This file contains 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
/* | |
Changing Genesis H1 Post Titles to H2 | |
*/ | |
add_filter( 'genesis_post_title_output', 'ac_post_title_output', 15 ); | |
function ac_post_title_output( $title ) | |
{ if ( is_home() || is_archive() ) | |
$title = sprintf( '<h1 class="entry-title"><a href="' . get_permalink() . '">%s</a></h1>', apply_filters( 'genesis_post_title_text',get_the_title() ) ); | |
return $title; |