It would help us help you if you were to post a link to one of your pages, (or a link and instructions).
Are you talking about a navigation menu ?, or rather the page navigation history display, sometimes called breadcrumbs ?
In either case I expect that you will be able to use a filter.
Where it says the page title Bamboo Collection on the direct opposite side of it it has website>page>page That is what I want to try and get rid of.
These are breadcrumbs.
Glad to see that your theme “FreeStore” provides custom css, in this case add these lines to your theme’s custom CSS:
.breadcrumbs {
display:none;
}
This will make them not display. If you want to remove them then you would have to change to using a child theme, details here:
creating a child theme http://codex.wordpress.org/Child_Themes
And either customise the page templates, OR add some hook functions in your functions.php file.
That worked perfectly, thank so much your help is greatly appreciated.