so after killing my brain forever trying to figure this out.. i finally got it to at least look how i want. who knows if it's right....But here's what I did...
I changed this:
#navBreadCrumb {
margin-top: 0px;
background-image:url(../images/centercolumn_capsule.gif);
background-repeat:no-repeat;
background-position:center;
font-size: 10px;
font-weight: bold;
color: #000000;
padding: 0.5em 0 0.5em 1.5em;
}
To This: (lines with a * in front are the lines I changed)
#navBreadCrumb {
* margin-top:-21px;
* background-color:transparent;
* /background-image:url(../images/centercolumn_capsule.gif);/
background-repeat:no-repeat;
background-position:center;
font-size: 10px;
font-weight: bold;
* color: #ffffff;
padding: 0.5em 0 0.5em 1.5em;
}
and then also had to change the links so the visited ones would show up
So I added this:
a:visited, #navBreadCrumb a:visited {
color:#ffffff;
}