Okay
  Public Ticket #2213558
Munio menu stays dark theme
Closed

Comments

  • todor.kakachev started the conversation

    Hi ClaPat team,

    In hamburger mode, when clicked, Munio menu turns dark even when everything else is switched to white theme. Is there a way to fix that or alternatively keep full menu in all responsive modes?

  •  1,822
    Support replied

    Hello,

    try adding the following:

    @media (min-width: 1025px){

    .fullscreen-menu .flexnav li a {
         -webkit-text-stroke: 1px rgba(0,0,0,0.3);
    }

    .fullscreen-menu nav.open {
        background-color: white !important;
    }

    .fullscreen-menu .flexnav li:hover a, .fullscreen-menu .flexnav li a.active {
        color: #000;
        -webkit-text-stroke: 1px #000;
    }

    .light-content #menu-burger span {
        background-color: #000;
    }


    }

    in customizer -> additional CSS

    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy

  • todor.kakachev replied

    It works, thank you :)

  • todor.kakachev replied

    Hi,

    I noticed the background is still dark in tablet and mobile modes. I decreased the px value in the first line of the additional CSS that your provided from 1025px to 1px and it seems to work. Is there any better way to do it?

    Best  

  •  1,822
    Support replied

    Hello, that should do, you just need to modify the media query the styles apply to

    @media (min-width: 1025px)

    to accommodate the target screens

    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy