You need to edit the Theme Functions (functions.php) file.
Appearance > Editor > Theme Functions (functions.php)
Find the following line:
/* Breadcrumb ********************************************/
In the lines that are following it, add the /* and */ you see below in those exact places.
function brightpage_the_breadcrumb() {
/* if (!is_home()) {
echo ‘<a href=”‘;
echo home_url(‘home’);
echo ‘”>’;
echo (‘Home’);
echo ” » “;
if (is_single()) {
the_title(”);
if (is_single()) {
echo “”;
}
} elseif (is_page()) {
echo the_title();
}
} */
}
This will remove the breadcrumb section.