[Resolved] Colors of mobile responsive menu

Home Forums Support [Resolved] Colors of mobile responsive menu

Home Forums Support Colors of mobile responsive menu

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1636891
    J.

    Hi there,

    I’ve tried to search a solution for this, but it seems that the standard customizer does not support the settings I’m looking for. It’s about the menu-text in the header navigation. The color settings for desktop work fine but once you adjust the screen size to mobile, the text of the so-called hamburger menu is showing different colors. Please feel to check it out here, it’s a bit difficult to explain:

    https://bit.ly/3r4PhW5

    #1637143
    David
    Staff
    Customer Support

    Hi there,

    some of the Elementor theme styles are being applied to ALL buttons which is also affecting the menu toggle.

    You can use some CSS to overwrite that:

    /* Mobile menu button */
    .mobile-menu-control-wrapper .menu-toggle {
      background-color: transparent;
      border-color: transparent;
      color: #000;
    }
    /* Hover color */
    .mobile-menu-control-wrapper .menu-toggle:hover {
      background-color: transparent;
      border-color: transparent;
      color: #000;
    }

    Change the colors to suit

    #1637149
    J.

    Perfect, that works, thanks!

    #1637178
    David
    Staff
    Customer Support

    You’re welcome

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.