Hi Steven,
For full width and remove archive title, try this CSS:
.archive .grid-container {
max-width: 100%
}
.archive .page-header {
display: none;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
For removing sidebar, try this filter:
add_filter( 'generate_sidebar_layout','tu_custom_category_sidebar_layout' );
function tu_custom_category_sidebar_layout( $layout )
{
if ( is_archive() )
return 'no-sidebar';
return $layout;
}
Adding PHP: https://docs.generatepress.com/article/adding-php/
https://docs.generatepress.com/article/sidebar-layout/#using-a-function