Drop-down menu color
-
Can’t get drop-down menus to be #9966ff Ack! can’t figure out how I did it before. davebartell.com
Stories is correct. Novels is wrong color.
Also, link color on Stories page is green – not #9966ff
css
#header .menu {
display: none !important;
}.main-navigation {
background: #5a44af;
}.menu-toggle {
background: #5a44af;
}.icon {
background: #5a44af;
}.menu .menu-item-26 {
background: #5a44af;
}.menu .menu-item-27 {
background: #5a44af;
}.menu .menu-item-28 {
background: #5a44af;
}.menu .menu-item-29 {
background: #5a44af;
}.menu .menu-item-171 {
background: #5a44af;
}.customize-unpreviewable {
color: #5a44af;
}.page-item-142 {
background: #9966ff;
}.page-item-145 {
background: #9966ff;
}.page-id-6 .entry-title {
display: none;
}The blog I need help with is: (visible only to logged in users)
-
Hi there,
Can’t get drop-down menus to be #9966ffPlease try to use the following CSS to change the submenu color. We can do away with targetting individual menu item to change color-
.main-navigation ul ul li { background-color: #9966ff; }Also, link color on Stories page is green – not #9966ffI think you want to have all link to have the color #9966ff as you are not using green in your website.
This CSS will set all links to #9966ff on your blog
a { color: #9966ff; }Hope this helps and let us know if you still have questions.
- The topic ‘Drop-down menu color’ is closed to new replies.