I want to make the "active selected page" menu font Black and the other non-selected pages white. Can this be done?
[gelöscht durch Administrator]
"active page" menu font color different from the "non-active" pages?
Re: "active page" menu font color different from the "non-active" pages?
It is configured in the CSS for the menu.
Hope this helps,
Russ
Hope this helps,
Russ
Re: "active page" menu font color different from the "non-active" pages?
That part I knew, I am looking for deatils on how to do it. Thanks for your time though.
Re: "active page" menu font color different from the "non-active" pages?
When the page is viewed in browser rite clik view source and you will/should get the class of the active page, use that to do the styling.
Re: "active page" menu font color different from the "non-active" pages?
Thanks Mark! I havent seen you on the boards lately! I will try and take a look.
Re: "active page" menu font color different from the "non-active" pages?
the CSS class in the {breadcrumb} module is "current", just add
.current {
background: #CCC;
color: #000;
}
to your CSS, should do the trick!
.current {
background: #CCC;
color: #000;
}
to your CSS, should do the trick!
Re: "active page" menu font color different from the "non-active" pages?
Are you sure the breadcrumbs will have a change with the menu text? I will give it a try. Thanks
Re: "active page" menu font color different from the "non-active" pages?
No it won't. I assume you are configuring the default Template, in which case the sections you need to change are:duplay wrote: Are you sure the breadcrumbs will have a change with the menu text? I will give it a try. Thanks
div#menu_vert a {
color: #FFF;
}
div#menu_vert ul h3 {
color: #000;
}
Just add those lines above into the relevant sections in the vertical menu CSS.
Last edited by squigg on Tue Sep 05, 2006 1:15 pm, edited 1 time in total.
Re: "active page" menu font color different from the "non-active" pages?
Will I change the above in the template, or in the stylesheet for the menu? Thanks