Viewing 3 posts - 1 through 3 (of 3 total)
- AuthorPosts
- July 27, 2020 at 12:40 pm #25393Shawn StephensonGuest
Hi,
I was wondering, how do I change the hamburger icon color in the mobile view? I’m using the Wedge theme.
Thank you,
July 27, 2020 at 1:37 pm #25403Jesse OwensKeymasterHi Shawn-
The colors of the hamburger menu are generated using the color palette you choose in Customize > Colors, but if you need more control, you can also use Custom CSS.
Navigate to Customize > Advanced > Custom JS & CSS and use code similar to this.
For the button color and background:
.palette-primary .navbar-default .navbar-toggle, .palette-primary .navbar-default .navbar-toggle:hover, .palette-primary .navbar-default .navbar-toggle:focus {background-color: orange !important; border-color: orange !important; }
Just replace “orange” with the color or hexcode you need. And for the bars, use code similar to this:
.palette-primary .navbar-default .navbar-toggle .icon-bar, .palette-primary .navbar-default .navbar-toggle:hover .icon-bar, .palette-primary .navbar-default .navbar-toggle:focus .icon-bar { background-color: black !important; }
In this one, replace “black” with your color. I hope this helps!
July 30, 2020 at 11:06 am #25473Shawn StephensonGuestIt worked great, Thanks Jesse!
- AuthorPosts
Viewing 3 posts - 1 through 3 (of 3 total)
- The topic ‘Hamburger Icon Color’ is closed to new replies.