Page 1 of 1
Problem with menu colors
Posted: Fri Mar 24, 2006 9:33 am
by alarach
I install the last version.
I try to modify the menu color.
#menu_vert li.activeparent {
background-color: #DFFF1A;
It doesn't work.
Any one here knows how to fix it or is a new bug.
Re: Problem with menu colors
Posted: Fri Mar 24, 2006 10:55 am
by calguy1000
all of the colours should be set on the Colours stylesheet.
Re: Problem with menu colors
Posted: Fri Mar 24, 2006 11:06 am
by alarach
The problem is in the NarBar.(Nav-Vertical Stylesheet)
I select a RED color for example, to know in what page you are.
My Site is
www.copantl.com
I have another website that's work perfect see
www.tupais.com
As you can see the green color, everytime you click the menu.
Re: Problem with menu colors
Posted: Fri Mar 24, 2006 11:13 am
by calguy1000
try: #menu_vert li.active01 h3,
#menu_vert li.active02 h3, and
#menu_vert li.active01 h3
but I'm just guessing.
Re: Problem with menu colors
Posted: Fri Mar 24, 2006 11:25 am
by alarach
I install the new version and I think that's the problem.
Since I insert the same code from previous version and still the same problem.
Re: Problem with menu colors
Posted: Fri Mar 24, 2006 11:35 am
by calguy1000
are you using the menumanager in 0.12? or are you using one of the old menu modules?
Re: Problem with menu colors
Posted: Sat Mar 25, 2006 9:36 am
by alarach
Yes the menumanager 0.12 is install, but I don't know how to program with this program.
I change the menu color in the stylesheet "Nav-Vertical" in other versions work fine.
Re: Problem with menu colors
Posted: Sat Mar 25, 2006 3:26 pm
by calguy1000
Ah, when using menumanager, as I found out this past week, you need to wrap the menumanager tag with an appropriate div.
i.e.:
{cms_module module=menumanager}
after this, working in Nav-Vertical should do the trick.
Re: Problem with menu colors
Posted: Mon Mar 27, 2006 3:50 pm
by alarach
It doesn't work, I still have the same problem.
With version 0.12-beta2 "Fiji", I only edit the "Nav-Vertical" Stylesheet and that's it.
In template area:
Navigation
{cms_module module='menumanager' collapse='1'}
In stylesheet area:
#menu_vert li a:hover {
background-color: #CCCCFF;
}
.current
{
list-style-type: square;
display: inline;
background-color: #abb0b6;
}
#menu_vert li.activeparent {
background-color: #DFFF1A;
Re: Problem with menu colors
Posted: Mon Mar 27, 2006 4:28 pm
by Dr.CSS
the 1 your having problem with,,
Home
the 1 that works
1: Home
maybe if you change this
#menu_vert li.activeparent {
background-color: #DFFF1A;
to this
#menu_vert li.currentpage {
background-color: #DFFF1A;
or maybe becuz you have no
#menu_vert li a.currentpage {
background-color: #DFFF1A;
HTH mark
Re: Problem with menu colors
Posted: Tue Mar 28, 2006 5:20 pm
by Glenn
I don't know if this is the root of your problem, but it's a problem that I found and was going to post as a new topic before I read your post. Calguy, should I post this elsewhere?
I installed 0.12 last week, then 0.12.1 yesterday on a different site and they both have the same problem:
bulletmenu.tpl uses this code:
Code: Select all
<a href="{$node->url}" class="currentpage">
but the Nav-Vertical stylesheet uses .current
Change one or the other so they match and the current page style will work. Shall I post this in the new feature request area?
Re: Problem with menu colors
Posted: Wed Mar 29, 2006 12:57 am
by alarach
Hey, thank you all.
I solve the problem:
In my template I had:
{cms_module module='menumanager' collapse='1'}
Change for this:
{cms_module module='menumanager' template="ellnav-vert.tpl" start_level='1' collapse='1'}
When I modify the "hover color" and the "activeparent color" in "Nar-Vertical stylesheet" works perfect.
Thanks everybody!