how to change lucid mobile menu text colors?

I changed the lucid header color, but on the mobile menu I can't see the text so I need to change the mobile menu text color. What section is it under in styles?

  • 377
  • More
Replies (1)
    • Hello! 

      You need to add CSS rules to the Studio->Lucid->Styles->Custom Styles area:

      /* Mobile menu text, border - color, size  */
      .cd-dropdown .cd-dropdown-content a, .cd-dropdown .cd-dropdown-content ul a {
          border-top-width: 1px;
          border-color: rgba(255,255,255,.1);
          border-style: solid;
          font-size: 1rem;
          font-weight: 600;
          color: rgb(255, 0, 0);
      }
      /* END Mobile menu text, border - color, size  */

      ! Delete unused code !

       

      Login or Join to comment.