-
-
Save About2git/91c4ce4f9d71e07a3b51 to your computer and use it in GitHub Desktop.
Moving Post Info above Post Title in Genesis
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
| //* 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 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
| .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