Getting rid of the "Home" under the nav bar
Permalink
Otherwise, log in as an admin and go to Dashboard > Pages & Themes > Themes and look for the one that is activated.
but I believe the area you are looking to delete is needed to be commented out of both the main.css and also in the elements-header folder.
I've removed this on a site recently and saved the edited files. I'll double check and give you a more specific locations for the edits
edit: see main.css for page meta lines 306-320 and for breadcrumbs 322-342
Elements folder has its own page-meta folder you could probably ignore if you comment out the lines in the main css
This video will show you how to use the file managerhttps://www.youtube.com/watch?v=YPXCu9Oo65M...
From there you need to find your concrete5 files which are usually at public_html/yoursite There you will see the concrete folders like blocks, concrete, config, controllers etc. You need to edit your theme files so since you are using a theme from the marketplace you will find it under /public_html/yoursite/packages as marketplace items are downloaded as packages. If you were using a core theme you would find it under /public_html/yoursite/concrete/themes
The slate theme will be under /public_html/yoursite/packages/theme_slate and from there you will be able to alter whatever files you want, but corretje's answer will be easiest to implement. Simply copy and paste what he wrote at the bottom of your main.css under whats already there.
You could also alter the code of the full page type and remove the bits with the headings and titles or create a new page type from full without the bits.
If you do dive into the page types code take a look at this post as it also applies to slate, and deals with the pieces you will want to remove/comment out and is answered by the themes creator.http://www.concrete5.org/marketplace/themes/luminosity/questions-an...
Thanks to user Khancock for finding the above post.
Add to your stylesheet main.css:
#page-meta h1 {
display: none;
}