How do you change the color of the mobile menu icon. Right now it’s white.
Hi Jerry,
Please add this code in X > Theme Options > CSS:

.masthead .x-btn-navbar {
color: #ccc;
}
Please feel free to change the color in the code above.
Here are some related links for further reading:
- Intro to CSS - https://goo.gl/mFuWQT
- How to get CSS selectors - https://goo.gl/BmoH39
- Get Started With Viewing And Changing CSS - https://goo.gl/7xFhDa
Hope this helps.
That worked.
When I click on the menu it goes white again.
When I click to close the dropdown menu the menu goes white again.
Hello Jerry,
Please update the code to:
.masthead .x-btn-navbar, .masthead .x-btn-navbar:hover {
color: #ccc;
}
Hope this helps.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.