Archived topic
Change size and position of meta
1 reply · Started by madmanweb on April 4, 2018
Hi.
Is there a way to change the size of the meta info below the title? I looked up and down the typography menu in the customiser and couldn't see one.
Also, how would I move it to another position like, say, the bottom of the post?
Hi there,
Try this CSS to change the entry meta:
.entry-meta {
font-size: 20px;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
This snippet should move it to the bottom of the post:
add_action( 'after_setup_theme', 'generate_move_post_meta' );
function generate_move_post_meta()
{
remove_action( 'generate_after_entry_title', 'generate_post_meta' );
add_action( 'generate_after_content', 'generate_post_meta' );
}
Adding PHP: https://docs.generatepress.com/article/adding-php/