• Resolved Malae

    (@malae)


    Hello,
    I would like to know the CSS code to change the colour of the hamburger icon in the mobile menu.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello malae,

    Try below css code.

    @media only screen and (max-width: 480px)
      .mobmenur-container i {
        color: #58d8b6;
      }
    }

    Hope this will helps you.

    Thanks.

    Thread Starter Malae

    (@malae)

    Hello Saurabh,

    Thanks for your quick response with the code. So far I have not been able to make any code work. I also tried removing the ‘r’ after menu, and using .btn-menu, but no luck.
    Btw, I was able to move the icon the right using

    @media only screen and (max-width: 600px) {
    	.mobile-nav {
    	   max-width: 18%;
               float: right;
      }    
    }
    Thread Starter Malae

    (@malae)

    Yes, that was the way to go and I succeeded to get the colour change on the icon with
    .mobile-nav i { color: #58d8b6; }

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Mobil menu hamburger icon color’ is closed to new replies.