[Resolved] Navigation Search Colors

Home Forums Support [Resolved] Navigation Search Colors

Home Forums Support Navigation Search Colors

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1040734
    Paul

    If I use this css

    .navigation-search input[type="search"], 
    .navigation-search input[type="search"]:active {
        color: #0b0c0c;
        background-color: #ffdd00;
    }

    The text color when typing is #ffdd00 so it can’t be seen. It can be seen if the mouse button is held down. How can I correct this?

    Thanks,
    Paul.

    #1040744
    Leo
    Staff
    Customer Support

    Hi there,

    Try this instead:

    .navigation-search input[type="search"], 
    .navigation-search input[type="search"]:active,
    .navigation-search input[type="search"]:focus {
        color: #0b0c0c;
        background-color: #ffdd00;
    }
    #1042854
    Paul

    Yeah sorted. Thanks for your help.

    #1042870
    Leo
    Staff
    Customer Support

    No problem 🙂

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