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?
How do I format breadcrumbs ?
Re: How do I format breadcrumbs ?
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
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 ?
THANKS a lot. I thought it might be something like that.
Yours, elin
Yours, elin