Quote Originally Posted by Edm View Post
Hi am new to Zen, php, etc etc. Really enjoying it. Have installed Mostly Grey template changed all colors to aqua, blue & green. Installed drop down menu, "great" . Have managed to change color on non hover & background but + text cant seem to get drop downs to change color. Site is running on example.com.

Have added black border to left but would like to but black border top & bottom . Will this interfere with drop down? do I just add
border bottom 1px 00000
border top 1px 000000

Also when i placed my logo into Mostly grey the nav breadcrumb auto floated down to accommodate. Turned off breadcrumb however logo is small & distorted i cant find where to increase this spacing. Logo 980x186 px.

Finally would like to float side box with a small space from static drop down menu bar have been trying but not much success. Any help greatly appreciated.
Regards
EDM
Link to the site? Have you searched for the mostly grey thread?

To change the drop down color, that is the very top portion of the stylesheet_header_menu.css:

Code:
/*green*/
div#dropMenu li a:hover, div#dropMenu li.submenu li.submenu:hover {color: #4f4f4f!important;background:#D5E88F;}
To add a border to the drop menu, you'd add it to:

Code:
div#dropMenu ul.level1
and the correct formatting would be:
Code:
border-top:1px solid #000000;
border-bottom:1px solid #000000;