@dadoonan : To remove the phrase category. You will need to download and activate the child theme from the this link and add the following code in the functions.php file of child theme.
add_filter( 'get_the_archive_title', function ( $title ) {
if( is_category() ) {
$title = single_cat_title( '', false );
}
return $title;
});
To make category full width. Add the following additional css
.category .sidebar-primary {
display: none;
}
#main {
width: 100%;
}
Let me know if this resolves your issue.
Regards,
Tikaram