Closed (fixed)
Project:
Zen
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
9 Sep 2008 at 15:37 UTC
Updated:
18 Jan 2009 at 23:00 UTC
Can you please assist me? I have been able to change the header and trailer color from blue to green (#34775a) by modifying the entries the zen-classic.css. But I found no code that affected the drop down menu color.
Comments
Comment #1
Crell commentedUh, this has nothing to do with menutree whatsoever.
Also, do not "assign" yourself to an issue unless you are volunteering to fix it. :-)
Comment #2
armourymedia commentedAre you referring to the primary navigation menu under the header? If so, that menu is built with an image so you would have to edit the image to modify it to your desired colour scheme. The image file is located in zen/zen_classic/images/tabs.png and the css that calls it is in zen-classic.css on line 211. The css for a:active and a:hover references a different position on the same image, which provides the three-buttons-in-one feature. Hope that helps.
Comment #3
bornsix commentedAnd the answer is:
See background color to zen-classic.css
#primary a
{
background: #6DA6E2 url(images/tabs.png) repeat-x;
color: #FFF; /* color of the menu print */
font-weight: bold;
display: block;
float: left;
padding: 5px 14px 5px 14px;
margin: 0 1px 0 0;
border: solid #6191C5 1px;
border-width: 1px 1px 0 1px;
background: #582; /* Menu button color changed to green */
}
Comment #4
yoroy commentedSeems to be fixed then.