• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

AAC Submenu color changes when moving mouse on it

3alola1

I don't have time
Joined
Sep 2, 2010
Messages
768
Solutions
7
Reaction score
331
Location
Darashia
I've been moding the layout and I found out that changing submen is in basic.css but whenever I move the mouse over the item menu it revert to its old color I kept searching where can I remove this revert code color and Can't find it in Gesior 2012
1732995206507.webp

CSS:
.Submenuitem {
  position: relative;
  margin: 0px;
  padding: 0px;
}

.ActiveSubmenuItemIcon {
  position: absolute;
  top: 5px;
  left: 3px;
  width: 10px;
  height: 10px;
  background-repeat: no-repeat;
  visibility: hidden;
}

.SubmenuitemLabel {
  margin: 0px;
  border-top: 0;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 15px;
  border-bottom: 1px solid #0e4f94;
  overflow: hidden;
}

/* Submenu links */
.Submenu a:link    { color: #d7d7d7; text-decoration: none; }
.Submenu a:visited { color: #d7d7d7; text-decoration: none; }
.Submenu a:focus   { color: #d7d7d7; text-decoration: none; }
.Submenu a:active  { color: white; text-decoration: none; }
.Submenu a:hover   { color: white; text-decoration: none; }
 
I'm not a web dev, but if I remember correctly, you can have multiple CSS files... like one for theming the "overall site" and then specific ones for specific parts (like the menu or side panel)... so I would look around and see if there is another CSS file that has that specific part for highlighting/hovering.
 
Solution
I'm not a web dev, but if I remember correctly, you can have multiple CSS files... like one for theming the "overall site" and then specific ones for specific parts (like the menu or side panel)... so I would look around and see if there is another CSS file that has that specific part for highlighting/hovering.
Thanks for the help <3
 

Similar threads

Back
Top