skip to Main Content

I would like to change the color of the woocommerce search field placeholder, any code to use?

2

Answers


  1. Chosen as BEST ANSWER

    I just found the solution

    input[type='search']::placeholder {
        color: #68aba8; }


  2. You can use this:

    .search-content {
        background-color: aqua;
    }
    

    If it does not work. Please add your code attempt.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search