Created
January 17, 2014 07:22
-
-
Save srikat/8469623 to your computer and use it in GitHub Desktop.
Moving Post Info above Post Title in Genesis. http://sridharkatakam.com/move-post-info-above-post-title-in-genesis/
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
//* Position post info above post title | |
remove_action( 'genesis_entry_header', 'genesis_post_info', 12); | |
add_action( 'genesis_entry_header', 'genesis_post_info', 9 ); |
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
.entry-header .entry-meta { | |
margin-bottom: 1.2rem; | |
} | |
.entry-title { | |
margin-bottom: 2rem; | |
} |
@srikat for me this seems to add the
entry-meta
above the post title but it doesn't remove the one below so now I have 2. Any ideas? You can view it here
Same here
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@srikat for me this seems to add the
entry-meta
above the post title but it doesn't remove the one below so now I have 2. Any ideas? You can view it here