Skip to content

Instantly share code, notes, and snippets.

@About2git
Forked from srikat/functions.php
Last active August 29, 2015 14:15
Show Gist options
  • Select an option

  • Save About2git/91c4ce4f9d71e07a3b51 to your computer and use it in GitHub Desktop.

Select an option

Save About2git/91c4ce4f9d71e07a3b51 to your computer and use it in GitHub Desktop.
Moving Post Info above Post Title in Genesis
//* Position post info above post title
remove_action( 'genesis_entry_header', 'genesis_post_info', 12);
add_action( 'genesis_entry_header', 'genesis_post_info', 9 );
.entry-header .entry-meta {
margin-bottom: 1.2rem;
}
.entry-title {
margin-bottom: 2rem;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment