Moving the Category/Archive Headline and Intro Text after header

// Moving the Category/Archive Headline and Intro Text after header <br>
// This way we can add flex to category posts, and full width color under blog title
remove_action( 'genesis_before_loop', 'genesis_do_taxonomy_title_description', 15 );
add_action( 'genesis_after_header', 'genesis_do_taxonomy_title_description', 15 );

And some CSS to beautify

.archive-description {
    background: #eee;
    padding: 5vw 0;
    margin: 0;
}
.archive-description h1.archive-title, .archive-description p {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 30px;
}
.archive-description h1.archive-title {
    font-size: 2.5rem;
    line-height: 1;
    padding-bottom: 20px;
}
Scroll to Top