Advertisement
artemsemkin

Rhye: classic menu / submenu color adjustments

Aug 17th, 2022 (edited)
953
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /* Top level items */
  2. #page-header .menu > li > a {
  3.   color: red !important; /* normal state */
  4. }
  5.  
  6. #page-header .menu > li > a:hover {
  7.   color: blue !important; /* hover state */
  8. }
  9.  
  10. /* Submenu items */
  11. #page-header .menu > li li > a {
  12.   color: green !important; /* normal state */
  13. }
  14.  
  15. #page-header .menu> li li > a:hover {
  16.   color: gray !important; /* hover state */
  17.   border-color: gray !important;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement