i'v checked around, and i can't seem to find out how to change the color of the breadcrumb #555555 to white. where abouts do i change that?

Comments

pete_dr’s picture

i actually meant the arrows in the breadcrumb not the text color :)

hswong3i’s picture

Assigned: Unassigned » hswong3i

The arrow color is coming from .body but not .breadcrumb * tag:

body {
  direction: ltr; /* LTR */
  color: #555;
  background: #FFF;
  font-size: 72.5%;
  font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, Geneva, sans-serif;
  font-weight: normal;
  line-height: 1.7em;
  text-align: left; /* LTR */
  margin: 0 auto;
  padding: 0;
}

So if you hope to override the color of arrow only, retouch .breadcrumb to suitable color, e.g. add this into your custom.css (not yet tested):

.breadcrumb {
  color: #FFF;
}
hswong3i’s picture

any else update? Or I will set this issue as fixed :-)

hswong3i’s picture

Status: Active » Fixed

Assume as fixed since no more feedback.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.