- This topic has 1 reply, 2 voices, and was last updated 4 years, 8 months ago by .
Viewing 1 reply thread
Viewing 1 reply thread
- You must be logged in to reply to this topic.
Home › Forums › SpyroPress Themes › Aduma › Mobile View menu icon color
Hi
You can use custom css code to change color for hamburger menu on mobile:
@media screen and (max-width: 1199px){
.navbar-toggle .icon-bar {
background: red!important;
}
.navbar-toggle:hover .icon-bar, .navbar-toggle:focus .icon-bar {
background: #e1a136!important;
}
}
Hope that helps.