Altering page / category names in breadcumbs

You have to add this to your CSS.

.breadcrumb_last {
    text-transform: capitalize;
}

enter image description here

As you can see, I used text-transform: capitalize;, to make the text looks like you need.

In case you don’t know how to add CSS, check this out.