Breadcrumbs? Do you mean the dotted line under links? To remove them just locate these lines of code in the style.css.
a {
color: #ffffff;
text-decoration: none;
border-bottom: 1px dotted transparent; <-------Remove this line
}
#content a:hover, #sidebar a:hover, #prefooter a:hover {
border-bottom: 1px dotted; <-------Remove this line
}
To remove the titles from pages just find this line of code in style.css.
.entry-content, .archive-content {
background: url(images/border-solid.png) repeat-x 0 0; <-------Remove
padding: 12px 22px 0;
overflow: hidden;
}
Now open content-page.php and remove this line.
<h2><?php the_title(); ?></h2>