Hi Sdrajakarunabusiness,
To remove the Navbar Head (Header Area), please go to ‘Appearance > Customize > Additional CSS’ and paste the below Code.
.navbar-head {
display: none;
}
Note: If you want to show Site Title, Logo Image or Header Banner then you can remove the above provided code again.
and To remove The Category Label on specific Category then please add the below code to the same Additional CSS Field as mention above.
body.category-XYZ .site-main .page-header {
display: none;
}
Note Please replace the Category Name instead of ‘XYZ’ on above mention Code. If the Category Name has more than 2 words then you can add Dash (-) on space between words like ‘hello world’ to ‘hello-word’.
Thanks