• Resolved simmyvos

    (@simmyvos)


    Hi Ben

    Me again ?? I have noticed that when I go onto my site (www.simplysimone.me) when I click on the menu dropdown I am unable to see my categories due to the colour of the font and the menu being the same.

    Could you point me in the direction of the location of the css that I can edit to correct this?

    Thank you.

    Simone

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author Ben Sibley

    (@bensibley)

    Hello ??

    I see what you mean. This CSS should fix that:

    #menu-primary a,
    #menu-primary a:link,
    #menu-primary a:visited {
      color: white;
    }
    #menu-primary a:hover,
    #menu-primary a:active,
    #menu-primary a:focus {
      color: #00005b;
    }
    @media all and (min-width: 800px) {
    
      #menu-primary a,
      #menu-primary a:link,
      #menu-primary a:visited {
        color: #00005b;
      }
    }

    That sets the color of the menu items to white, and then makes them dark blue if they’re hovered over/clicked on. It will also keep them dark blue for any screens wide enough to show the regular menu.

    Thread Starter simmyvos

    (@simmyvos)

    Hello Ben ??

    Thank you so much! It worked like a charm!! ??

    Theme Author Ben Sibley

    (@bensibley)

    No problem ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Mobile menu colour’ is closed to new replies.