How do I format breadcrumbs ?

For discussion and questions related to CMS Specific templates and stylesheets (CSS), and themes. or layout issues. This is not a place for generic "I don't know CSS issues"
Locked
elin.rand.nielsen

How do I format breadcrumbs ?

Post 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?
tsw
Power Poster
Power Poster
Posts: 1408
Joined: Tue Dec 13, 2005 10:50 pm

Re: How do I format breadcrumbs ?

Post 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
elin.rand.nielsen

Re: How do I format breadcrumbs ?

Post by elin.rand.nielsen »

THANKS a  lot. I thought it might be something like that.
Yours, elin
Locked

Return to “Layout and Design (CSS & HTML)”