Delicious: Multiple colors for header buttons
-
As of now, my header menu buttons are all white. When I hover over a particular button, it will go blue.
How do I make each menu button a different color (pre-hovering)?The blog I need help with is: (visible only to logged in users)
-
Each menu item is assigned a unique identifier. To find them, you can look in the page source. In the Delicious Magazine theme, you can change the menu hover colors like this:
#menu-item-935 a:hover { background: tomato; } #menu-item-936 a:hover { background: palegreen; } #menu-item-1097 a:hover { background: aquamarine; } #menu-item-1185 a:hover { background: peachpuff; } #menu-item-938 a:hover { background: lavender; }Colors: http://www.w3.org/TR/css3-color/#svg-color
Note that if you change the menus, you may also need to adjust the identifiers like #menu-item-1234 to new number and you can look in the page source to find them if you make a change like that.
-
Thank you so much for your help. This was my first foray into coding and CSS, and your assistance really helped me take a solid beginning step.
- The topic ‘Delicious: Multiple colors for header buttons’ is closed to new replies.