• I’m having a problem changing the color of the hamburger menu for mobile.
    After trying everything under the sun I found out the style that needs to be changed is:
    .tc-is-mobile .navbar .nav-collapse+.btn-toggle-nav .icon-bar{background-color:#5f6f81}

    that is inside the file:

    customizr/inc/assets/css/tc_common.min.css

    I tried adding the style to my child css but that’s not working.
    Somehow the file in the parent theme is overwriting the custom css tyle.

    I know I could change the style directly on the partent theme file but then I would “Stuck” changing it every time there’s an update.

    Anybody has any idea how to solve this?

    Thanks

Viewing 1 replies (of 1 total)
  • you need to use the !important notation after the style to make sure it takes the one out of your stylesheet, rather than the one from the other file. Try this:

    .tc-is-mobile .navbar .nav-collapse+.btn-toggle-nav .icon-bar {
    background-color:#5f6f81 !important;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Problem with Customizr Hamburger Menu’ is closed to new replies.