Page 1 of 1

How do I format breadcrumbs ?

Posted: Wed Feb 07, 2007 5:33 pm
by elin.rand.nielsen
Hi

I am useing af layout from the basic site installed with cmsms

but how do I format the breadcrumb - trail.

I want to remove the use of bold for the current page.

The formatting is

div.breadcrumbs {
  padding: 1em 0 1.2em 0; /* CSS short hand rule first value is top then right, bottom and left */
  font-size: 90%; /* set fontsizes to be relative, this way viewer can change his/her fontsize */
  margin: 0 1em;        /* css shorthand rule will be opened to be "0 1em 0 1em" */
  border-bottom: 1px dotted  #15ECFA;
}

Adding font-weight: normal !important;

doesn't help?

Re: How do I format breadcrumbs ?

Posted: Wed Feb 07, 2007 7:28 pm
by tsw
oh my, I see its in the html source

div.breadcrumbs strong
{
font-weight:normal;
}

might do the trick, but prepare for it to be

div.breadcrubms span.lastitem {
style here..
}

in next version

Re: How do I format breadcrumbs ?

Posted: Wed Feb 07, 2007 8:34 pm
by elin.rand.nielsen
THANKS a  lot. I thought it might be something like that.
Yours, elin