> Does the Breadcrumb text follow the
> set color of a TW's link color. For example,
> will my Breadcrumbs, and the links in my
> Main Menu, be set by the same variable?
Yes, by default, the breadcrumbs links use the standard link color.
However... the entire breadcrumbs display area is assigned the class
"breadCrumbs", so that you can create a separate CSS rule for those
links if you need to...
In [[StyleSheet]], add something like this:
.breadCrumbs a { color:#ffc !important; }
Note the use of "!important" to ensure that this rule takes precedence
for 'a' elements contained within the 'breadCrumbs' class. Also note
the use of the shorter "#ffc", which is exactly equivalent to
"#ffcccc" (when a three-digit color value is used, the digits are
*automatically* repeated, e.g., "#abc" is the same as "#aabbcc").
enjoy,
-e
ref:
http://www.TiddlyTools.com/#BreadcrumbsPlugin