Hello!
I hope the week is going well so far!
I want to change the mobile menu drop down text color to be white (currently a dark grey). My site was built by a developer (custom not template), who is now unreachable to give edits.
My site: www.shredsurfcompany.com
Here is some of the code I feel I might need to change based on the active hover functionality mentioned:
I attempted to change “color: var(–body_color);” to “color: #f4f4f4;” without any success
.toolbar .toolbar-col .dropdown-menu {
padding: 5px 0;
margin: 2px 0;
right: 0;
-moz-border-radius: 0;
-webkit-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
font-size: var(--font_size);
color: var(--body_color);
min-width: 100%
}
.toolbar .toolbar-col .dropdown-menu li * {
display: block;
padding: 4px 14px 3px 15px;
cursor: pointer;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis
}
.toolbar .toolbar-col .dropdown-menu li.active *,
.toolbar .toolbar-col .dropdown-menu li:hover * {
background-color: #f4f4f4;
color: #66787f
}
Thanks so much for the help!
