• I styled the ‘search’ input button with a background: url("image") in CSS, but the word “Search” appears over my image and I don’t know how to remove it. Would appreciate some help. Thank you.

Viewing 1 replies (of 1 total)
  • Hi jim-online

    You need to apply

    display: none;

    eg

    .submit input {
    display: none;
    }

    if this interferes with the entire button you can also do:

    .submit input {
    color: transparent;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Remove the Word "Search" From Input Button’ is closed to new replies.